2021-07-20 22:51:43 +00:00
|
|
|
@use "base";
|
2021-07-11 06:33:58 +00:00
|
|
|
@use "../../../node_modules/bootstrap/scss/bootstrap";
|
2021-07-13 01:00:17 +00:00
|
|
|
|
2021-07-20 22:51:43 +00:00
|
|
|
#nav {
|
|
|
|
@extend .navbar;
|
|
|
|
@extend .navbar-expand-lg;
|
|
|
|
@extend .sticky-top;
|
|
|
|
@include themer.themed {
|
|
|
|
background-color: themer.color-of("navbar");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link, .navbar-brand {
|
|
|
|
@include themer.themed {
|
|
|
|
color: themer.color-of("bold");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
2021-07-13 01:00:17 +00:00
|
|
|
@include themer.themed {
|
|
|
|
background-color: themer.color-of("background");
|
|
|
|
color: themer.color-of("text");
|
|
|
|
}
|
|
|
|
}
|
2021-07-10 02:47:40 +00:00
|
|
|
|
2021-07-20 22:51:43 +00:00
|
|
|
#footer {
|
|
|
|
@extend .py-2;
|
|
|
|
@extend .text-center;
|
|
|
|
@extend .border-top;
|
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 {
|
|
|
|
text-decoration: none;
|
|
|
|
@include themer.themed {
|
|
|
|
color: themer.color-of("muted");
|
|
|
|
}
|
2021-07-11 06:33:58 +00:00
|
|
|
}
|
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-13 01:00:17 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
@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-13 01:00:17 +00:00
|
|
|
}
|
|
|
|
|