This commit is contained in:
McShelby 2022-02-12 22:50:13 +00:00
parent 89b01ed8f3
commit 521e8c1e93
157 changed files with 5403 additions and 4954 deletions

View file

@ -40,5 +40,5 @@
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: #202020; /* Color of background for the active category (only) */
--MENU-VISITED-color: #569cd8; /* Color of 'page visited' icons in menu */
--MENU-SECTION-HR-color: #282830; /* Color of <hr> separator in menu */
--MENU-SECTION-HR-color: #606060; /* Color of <hr> separator in menu */
}

View file

@ -40,5 +40,5 @@
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: #ffffff; /* Color of background for the active category (only) */
--MENU-VISITED-color: #506397; /* Color of 'page visited' icons in menu */
--MENU-SECTION-HR-color: #282830; /* Color of <hr> separator in menu */
--MENU-SECTION-HR-color: #606060; /* Color of <hr> separator in menu */
}

View file

@ -176,10 +176,6 @@ th {
color: #e6e6e6; /* var(--MENU-SECTIONS-LINK-HOVER-color) */
}
#sidebar hr {
border-bottom: 1px solid #2a232f; /* var(--MENU-SECTION-HR-color) */
}
#sidebar a.padding {
padding: 0 1rem;
}
@ -240,7 +236,7 @@ th {
#sidebar ul li.active > a {
background-color: #ffffff; /* var(--MENU-SECTION-ACTIVE-CATEGORY-BG-color) */
color: #777 !important; /* var(--MENU-SECTION-ACTIVE-CATEGORY-color) */
color: #777777 !important; /* var(--MENU-SECTION-ACTIVE-CATEGORY-color) */
margin-left: -1rem;
margin-right: -1rem;
padding-left: 1rem;
@ -316,6 +312,19 @@ th {
text-transform: uppercase;
}
#sidebar .footermargin {
margin-top: auto;
}
#sidebar hr {
border-bottom: 1px solid #2a232f; /* var(--MENU-SECTION-HR-color) */
margin: 1.5rem 1rem 1rem 1rem;
}
#footer {
color: #cccccc; /* var(--MENU-SECTIONS-LINK-color) */
}
#body {
margin-left: 300px;
min-height: 100%;
@ -455,17 +464,6 @@ th {
text-align: justify;
}
#footer {
color: #cccccc; /* var(--MENU-SECTIONS-LINK-color) */
font-size: 13px;
padding: 3rem 1rem;
text-align: center;
}
#footer p {
margin: 0;
}
body {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-size: 16.25px !important;
@ -899,6 +897,8 @@ td {
}
#sidebar .highlightable {
display: flex;
flex-direction: column;
overflow: auto;
}
@ -1388,37 +1388,27 @@ h6 a {
margin-top: 1rem;
}
.select-container {
height: 1.5rem;
}
.select-style {
border: 0;
border-radius: 0px;
display: inline-flex;
height: 1.5rem;
margin-left: 1.5rem;
position: relative;
overflow: hidden;
width: 150px;
}
.select-style svg {
fill: #ccc;
height: 14px;
margin: auto;
pointer-events: none;
width: 14px;
}
.select-style svg:hover {
fill: #e6e6e6;
top: -1.5rem;
}
.select-style select {
-webkit-appearance: none;
border: none;
box-shadow: none;
background: transparent;
background-color: transparent;
background-image: none;
margin: auto;
margin-left: 0px;
margin-right: -20px;
padding: 0;
width: 130%;
width: 100%;
}
.select-style select:focus {
@ -1426,7 +1416,7 @@ h6 a {
}
.select-style :hover {
cursor: pointer;
cursor: pointer;
}
@media only all and (max-width: 47.938em) {

View file

@ -37,10 +37,6 @@ a:hover,
color: var(--MENU-SECTIONS-LINK-HOVER-color);
}
#sidebar hr {
border-color: var(--MENU-SECTION-HR-color);
}
#sidebar ul.topics > li.parent,
#sidebar ul.topics > li.active {
background-color: var(--MENU-SECTIONS-ACTIVE-BG-color);
@ -59,6 +55,10 @@ a:hover,
color: var(--MENU-SECTIONS-LINK-HOVER-color);
}
#sidebar hr {
border-color: var(--MENU-SECTION-HR-color);
}
#footer {
color: var(--MENU-SECTIONS-LINK-color);
}