Updated styling.

This commit is contained in:
2021-07-24 14:47:40 -05:00
parent f31293d886
commit 5d8a4a3803
5 changed files with 120 additions and 115 deletions

View File

@@ -1,12 +1,14 @@
$themes: (
"light": (
"background": #f4f4f4,
"navbar": #FFF8F8,
"main": #BDF2D5,
"background": #ebf0ef,
"navbar": #E6F4F1,
"navbar-link": #005780,
"navbar-active": #001f2e,
"main": #B4EEFF,
"footer": #F2F2F2,
"sub": #F4FCFC,
"bold": #647b9b,
"text": #1A1A1A,
"sub": #EEFBFF,
"text": #1A1A1A,
"special": #00A2EF,
"muted": #797a7e,
),
);

View File

@@ -12,12 +12,15 @@ header > nav {
.nav-link, .navbar-brand {
@include themer.themed {
color: themer.color-of("bold");
color: themer.color-of("navbar-link");
}
&.active {
@include themer.themed {
color: themer.color-of("text");
color: themer.color-of("navbar-active");
border-color: themer.color-of("navbar-active");
}
border-bottom-style: solid;
border-bottom-width: 1px;
}
}
@@ -34,7 +37,6 @@ main {
flex-direction: column;
.tear {
@extend .p-3;
border-top: 1px;
border-top-style: solid;
border-bottom: 1px;
@@ -92,7 +94,7 @@ footer {
hr.concise {
@extend .my-3;
@include themer.themed {
color: themer.color-of("bold");
color: themer.color-of("special");
}
width: 15%;
max-width: 160px;