props/Props/spa/src/assets/scss/main.scss

72 lines
1.2 KiB
SCSS
Raw Normal View History

@use "base";
@use "../../../node_modules/bootstrap/scss/bootstrap";
2021-07-13 01:00:17 +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");
}
}
#footer {
@extend .py-2;
@extend .text-center;
@extend .border-top;
@include themer.themed {
background-color: themer.color-of("footer");
color: themer.color-of("muted");
}
a {
text-decoration: none;
@include themer.themed {
color: themer.color-of("muted");
}
}
}
.jumbotron {
@extend .container-fluid;
@extend .p-4;
@include themer.themed {
background-color: themer.color-of("main");
}
2021-07-13 01:00:17 +00:00
&.sub {
@include themer.themed {
background-color: themer.color-of("sub");
}
}
}
2021-07-13 01:00:17 +00:00
h1 {
font-size: 5em;
}
h2 {
font-size: 3em;
}
hr {
@extend .my-3;
@include themer.themed {
2021-07-13 01:00:17 +00:00
color: themer.color-of("bold");
}
2021-07-13 01:00:17 +00:00
}