2021-07-21 00:08:57 +00:00
|
|
|
@use "themer";
|
|
|
|
@use "~/node_modules/bootstrap/scss/bootstrap";
|
2021-07-22 21:12:27 +00:00
|
|
|
@use "sass:color";
|
2021-07-13 01:00:17 +00:00
|
|
|
|
2021-07-21 00:08:57 +00:00
|
|
|
header > nav {
|
2021-07-20 22:51:43 +00:00
|
|
|
@extend .navbar-expand-lg;
|
2021-07-21 00:08:57 +00:00
|
|
|
@extend .navbar;
|
|
|
|
@extend .border-bottom;
|
2021-07-20 22:51:43 +00:00
|
|
|
@include themer.themed {
|
|
|
|
background-color: themer.color-of("navbar");
|
|
|
|
}
|
|
|
|
|
2021-07-21 00:08:57 +00:00
|
|
|
.nav-link, .navbar-brand {
|
|
|
|
@include themer.themed {
|
|
|
|
color: themer.color-of("bold");
|
|
|
|
}
|
|
|
|
&.active {
|
|
|
|
@include themer.themed {
|
|
|
|
color: themer.color-of("text");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-toggler {
|
|
|
|
.bi-list {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
2021-07-20 22:51:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-21 06:58:49 +00:00
|
|
|
main {
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-07-22 21:12:27 +00:00
|
|
|
|
|
|
|
.tear {
|
|
|
|
@extend .p-3;
|
|
|
|
border-top: 1px;
|
|
|
|
border-top-style: solid;
|
|
|
|
border-bottom: 1px;
|
|
|
|
border-bottom-style: solid;
|
|
|
|
@include themer.themed {
|
|
|
|
$tear: themer.color-of("background");
|
2021-07-22 21:40:46 +00:00
|
|
|
border-color: adjust-color($color: $tear, $lightness: -12%, $alpha: 1.0);
|
2021-07-22 21:12:27 +00:00
|
|
|
background-color: adjust-color($color: $tear, $lightness: -5%, $alpha: 1.0);
|
|
|
|
}
|
|
|
|
}
|
2021-07-13 01:00:17 +00:00
|
|
|
}
|
2021-07-10 02:47:40 +00:00
|
|
|
|
2021-07-21 00:08:57 +00:00
|
|
|
footer {
|
2021-07-20 22:51:43 +00:00
|
|
|
@extend .text-center;
|
|
|
|
@extend .border-top;
|
2021-07-21 06:58:49 +00:00
|
|
|
@extend .py-2;
|
2021-07-11 06:33:58 +00:00
|
|
|
@include themer.themed {
|
2021-07-20 22:51:43 +00:00
|
|
|
background-color: themer.color-of("footer");
|
|
|
|
color: themer.color-of("muted");
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
@include themer.themed {
|
|
|
|
color: themer.color-of("muted");
|
|
|
|
}
|
2021-07-11 06:33:58 +00:00
|
|
|
}
|
2021-07-21 00:08:57 +00:00
|
|
|
|
|
|
|
width: 100%;
|
2021-07-10 02:47:40 +00:00
|
|
|
}
|
|
|
|
|
2021-07-11 06:33:58 +00:00
|
|
|
.jumbotron {
|
|
|
|
@extend .container-fluid;
|
|
|
|
@extend .p-4;
|
|
|
|
@include themer.themed {
|
2021-07-11 07:38:35 +00:00
|
|
|
background-color: themer.color-of("main");
|
2021-07-11 06:33:58 +00:00
|
|
|
}
|
2021-07-13 01:00:17 +00:00
|
|
|
|
|
|
|
&.sub {
|
|
|
|
@include themer.themed {
|
|
|
|
background-color: themer.color-of("sub");
|
|
|
|
}
|
|
|
|
}
|
2021-07-11 06:33:58 +00:00
|
|
|
}
|
|
|
|
|
2021-07-21 00:08:57 +00:00
|
|
|
.concise {
|
|
|
|
max-width: 630px;
|
|
|
|
width: inherit;
|
|
|
|
}
|
|
|
|
|
2021-07-21 06:58:49 +00:00
|
|
|
.less-concise {
|
|
|
|
max-width: 720px;
|
|
|
|
width: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr.concise {
|
2021-07-13 01:00:17 +00:00
|
|
|
@extend .my-3;
|
2021-07-11 06:33:58 +00:00
|
|
|
@include themer.themed {
|
2021-07-13 01:00:17 +00:00
|
|
|
color: themer.color-of("bold");
|
2021-07-11 06:33:58 +00:00
|
|
|
}
|
2021-07-21 06:58:49 +00:00
|
|
|
width: 15%;
|
|
|
|
max-width: 160px;
|
|
|
|
min-width: 32px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
height: 2px;
|
2021-07-13 01:00:17 +00:00
|
|
|
}
|
|
|
|
|
2021-07-21 00:08:57 +00:00
|
|
|
html {
|
|
|
|
min-height: 100%;
|
2021-07-21 06:58:49 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
@include themer.themed {
|
|
|
|
background-color: themer.color-of("background");
|
|
|
|
color: themer.color-of("text");
|
|
|
|
}
|
2021-07-22 21:12:27 +00:00
|
|
|
}
|
|
|
|
|
2021-07-22 21:40:46 +00:00
|
|
|
|
|
|
|
// Site-wide css imports:
|
2021-07-22 21:12:27 +00:00
|
|
|
@import "~/node_modules/bootstrap-icons/font/bootstrap-icons.css";
|
|
|
|
@import "~/node_modules/simplebar/dist/simplebar.min.css";
|