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

49 lines
840 B
SCSS
Raw Normal View History

@use "app-layout";
@use "../../../node_modules/bootstrap/scss/bootstrap";
2021-07-13 01:00:17 +00:00
#app-content {
@include themer.themed {
background-color: themer.color-of("background");
color: themer.color-of("text");
}
}
nav.navbar {
@extend .navbar-expand-lg;
2021-07-13 01:00:17 +00:00
@extend .sticky-top;
@include themer.themed {
@extend .navbar-light;
background-color: themer.color-of("navbar");
}
}
.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
}