-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82b88d4
commit 82b087e
Showing
3 changed files
with
176 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,91 @@ | ||
url: https://andrewallenbruce.github.io/northstar/ | ||
|
||
template: | ||
bootstrap: 5 | ||
|
||
home: | ||
title: northstar • Tidy Healthcare Revenue Integrity Tools | ||
description: > | ||
Tidy tools for wrangling and analyzing healthcare revenue cycles. | ||
sidebar: | ||
structure: [links, license, community, citation, authors, dev] | ||
|
||
navbar: | ||
structure: | ||
left: | ||
- intro | ||
- reference | ||
- articles | ||
right: | ||
- home | ||
- news | ||
- github | ||
components: | ||
home: | ||
icon: fas fa-home fa-lg | ||
text: "" | ||
href: index.html | ||
intro: | ||
icon: ~ | ||
text: Getting started | ||
href: articles/fee-schedule.html | ||
reference: | ||
text: Reference | ||
href: reference/index.html | ||
articles: | ||
text: Articles | ||
menu: | ||
- text: Dictionary | ||
href: articles/columns.html | ||
news: | ||
icon: far fa-newspaper fa-lg | ||
href: news/index.html | ||
text: "" | ||
title: "Changelog" | ||
github: | ||
icon: fab fa-github fa-lg | ||
href: https://github.com/andrewallenbruce/northstar | ||
linkedin: | ||
icon: fas fa-linkedin fa-lg | ||
href: https://www.linkedin.com/in/andybruce1/ | ||
twitter: | ||
icon: fab fa-twitter fa-lg | ||
href: http://twitter.com/aabrucehimni | ||
|
||
reference: | ||
|
||
- title: Medical Codesets | ||
desc: > | ||
Medical Coding & Billing Codesets. | ||
contents: | ||
- adjustment_codes | ||
- icd10_search | ||
- hcpcs_search | ||
- lcd | ||
- ncd | ||
- rvu | ||
- pfs | ||
- gpci | ||
- level2 | ||
- descriptors | ||
- rbcs | ||
- opps | ||
- msdrg | ||
- modifiers | ||
- taxonomy | ||
|
||
- title: Labelling Functions | ||
desc: > | ||
Utilities to label Codeset outputs. | ||
contents: | ||
- starts_with("case_") | ||
|
||
- title: Calculations | ||
desc: > | ||
Functions to calculate Fee Schedule Amounts. | ||
contents: | ||
- limiting_charge | ||
- non_participating_amount | ||
- calculate_amounts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
h1, .h1 { | ||
font-size: 2.5rem; | ||
line-height: 1em; | ||
} | ||
|
||
h2, .h2 { | ||
font-size: 2rem; | ||
line-height: 1em; | ||
} | ||
|
||
h3, .h3 { | ||
font-size: 1.75rem; | ||
} | ||
|
||
h4, .h4 { | ||
font-size: 1.5rem; | ||
} | ||
|
||
dt { | ||
color: rgb(38, 38, 38); | ||
text-decoration: underline; | ||
text-decoration-style: solid; | ||
text-underline-offset: 4px; | ||
font-family: monospace; | ||
border-top-style: dotted; | ||
border-top-width: 1px; | ||
border-top-color: gray; | ||
margin-bottom: 5px; | ||
padding-top: 5px; | ||
} | ||
|
||
img { | ||
border-radius: 4px; | ||
} | ||
|
||
.roles { | ||
color: rgb(3, 153, 3) !important; | ||
} | ||
|
||
.me-auto { | ||
color: blue !important; | ||
animation: color-change 5s infinite !important; | ||
} | ||
|
||
@keyframes color-change { | ||
0% { color: #9370DB; } | ||
50% { color: #00BFFF; } | ||
100% { color: #9370DB; } | ||
} | ||
|
||
.active .nav-link { | ||
color: rgb(3, 153, 3) !important; | ||
} | ||
|
||
.text-muted { | ||
color: rgb(0, 141, 158) !important | ||
} | ||
|
||
dd > p:nth-child(1) > em { | ||
color: #4169E1 !important; | ||
margin-bottom: 4px !important | ||
} | ||
|
||
dd > p:nth-child(1) { | ||
margin-bottom: -5px !important; | ||
margin-left: -3px !important; | ||
} | ||
|
||
dd > p:nth-child(2) { | ||
margin-left: -6px !important; | ||
} | ||
|
||
.row > main { | ||
max-width: 100%; | ||
} | ||
|
||
@media only screen and (min-width: 640px) { | ||
main + .col-md-3 { | ||
margin-left: unset; | ||
padding-left: 5rem; | ||
max-width: 75%; | ||
} | ||
} | ||
|
||
h4.author,h4.date { | ||
padding-top:0px; | ||
margin-top:0px; | ||
} |