-
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
d70ff85
commit 5640860
Showing
4 changed files
with
256 additions
and
30 deletions.
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
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,217 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); | ||
|
||
:root { | ||
--blue: #003A70; | ||
--lt-blue: #6BA4B8; | ||
--purple: #981E97; | ||
--lt-purple: #B24DB2; | ||
--dk-gray: #343a40; | ||
--md-gray: #545859; | ||
--lt-gray: #ddd; | ||
--orange: #F68D2E; | ||
} | ||
|
||
/* Increase the navbar logo size */ | ||
.navbar-brand img { | ||
max-height: 50px; /* Increase the max width as needed */ | ||
width: auto; /* Maintain aspect ratio */ | ||
vertical-align: middle; | ||
} | ||
|
||
.navbar { | ||
background-color: white !important; | ||
padding-left: 10px; | ||
padding-bottom: 0px; | ||
margin-bottom: 0px; | ||
height: 70px; | ||
display: flex; | ||
align-items: flex-end; | ||
} | ||
|
||
.navbar > .container, | ||
.navbar > .container-fluid, | ||
.navbar > .container-sm, | ||
.navbar > .container-md, | ||
.navbar > .container-lg, | ||
.navbar > .container-xl, | ||
.navbar > .container-xxl { | ||
display: flex; | ||
flex-wrap: inherit; | ||
justify-content: space-between; | ||
align-items: flex-end; | ||
} | ||
|
||
/* Inactive tab color */ | ||
.navbar-nav .nav-link { | ||
color: var(--md-gray); /* Color for inactive links */ | ||
padding: 0; | ||
} | ||
|
||
/* Active tab color */ | ||
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show { | ||
color: var(--dk-gray); /* Color for active links */ | ||
font-weight: bold; | ||
} | ||
|
||
/* Hover tab color */ | ||
.navbar-nav .nav-link:hover { | ||
color: var(--dk-gray); /* Color on hover */ | ||
font-weight: bold; | ||
} | ||
|
||
hr { | ||
margin: 1rem 0; | ||
color: var(--md-gray); | ||
border: 0; | ||
border-top: 1px solid; | ||
opacity: 0.25; | ||
} | ||
|
||
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 { | ||
margin-top: 0; | ||
margin-bottom: 0.5rem; | ||
font-weight: 400; | ||
line-height: 1.2; | ||
color: var(--purple); | ||
} | ||
|
||
h1, .h1 { | ||
font-size: calc(1.75rem + 1.5vw); | ||
font-weight: 100; | ||
} | ||
@media (min-width: 1200px) { | ||
h1, .h1 { | ||
font-size: 3rem; | ||
} | ||
} | ||
|
||
h2, .h2 { | ||
font-size: calc(1rem + 0.6vw); | ||
font-weight: 700; | ||
} | ||
@media (min-width: 1200px) { | ||
h2, .h2 { | ||
font-size: 2rem; | ||
} | ||
} | ||
|
||
h3, .h3 { | ||
font-size: calc(1rem + 0.6vw); | ||
font-weight: 500; | ||
} | ||
@media (min-width: 1200px) { | ||
h3, .h3 { | ||
font-size: 1.75rem; | ||
} | ||
} | ||
|
||
h4, .h4 { | ||
font-size: calc(1.275rem + 0.3vw); | ||
} | ||
@media (min-width: 1200px) { | ||
h4, .h4 { | ||
font-size: 1.5rem; | ||
} | ||
} | ||
|
||
h5, .h5 { | ||
font-size: 1.25rem; | ||
} | ||
|
||
h6, .h6 { | ||
font-size: 1rem; | ||
} | ||
|
||
/* Table of contents in sidebar */ | ||
.sidebar nav[role="doc-toc"] ul > li > a:hover, | ||
.sidebar nav[role="doc-toc"] ul > li > ul > li > a:hover { | ||
color: var(--purple) !important; | ||
font-weight: bold; | ||
} | ||
.sidebar nav[role="doc-toc"] ul > li > a.focus, | ||
.sidebar nav[role="doc-toc"] ul > li > ul > li > a.focus, | ||
.sidebar nav[role="doc-toc"] ul > li > a.active, | ||
.sidebar nav[role="doc-toc"] ul > li > ul > li > a.active { | ||
color: var(--purple) !important; | ||
font-weight: bold; | ||
border-left-width: 1px; | ||
border-left-style: solid; | ||
border-left-color: var(--purple); | ||
} | ||
|
||
/* Unvisited link */ | ||
a:link { | ||
color: var(--purple); /* Change to your desired color */ | ||
} | ||
|
||
/* Visited link */ | ||
a:visited { | ||
color: var(--lt-purple); /* Change to your desired color */ | ||
font-weight: normal; | ||
} | ||
|
||
/* Mouse over link */ | ||
a:hover { | ||
color: var(--lt-purple); /* Change to your desired color */ | ||
font-weight: normal; | ||
} | ||
|
||
/* Selected link */ | ||
a:active { | ||
color: var(--lt-purple); /* Change to your desired color */ | ||
font-weight: normal; | ||
} | ||
|
||
/* Body */ | ||
body { | ||
font-family: 'Montserrat', sans-serif; | ||
font-weight: 500; | ||
font-size: 16px; | ||
color: var(--md-gray); | ||
} | ||
|
||
|
||
*, ::after, ::before { | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Scenario Cards */ | ||
.twocards { | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
.card { | ||
border: 1px solid #dadada; | ||
margin: 15px; | ||
box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2); | ||
transition: 0.2s; | ||
width: 50%; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.card h3 { | ||
margin-left: 14px; | ||
margin-right: 14px; | ||
margin-bottom: 4px; | ||
margin-top: 24px; | ||
} | ||
|
||
.card:hover { | ||
box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.card .container { | ||
padding: 2px 14px; | ||
flex: 1; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.card p { | ||
margin-left: 14px; | ||
margin-right: 14px; | ||
margin-bottom: 4px; | ||
margin-top: 0; | ||
} |
17 changes: 12 additions & 5 deletions
17
...new-random-forests-and-refence-scores.Rmd → vignettes/training-slr-model.Rmd
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