2021-07-11 06:33:58 +00:00
|
|
|
@use "app-layout";
|
|
|
|
@use "themer";
|
|
|
|
@use "../../../node_modules/bootstrap/scss/bootstrap";
|
2021-07-10 02:47:40 +00:00
|
|
|
@import "../../../node_modules/bootstrap-icons/font/bootstrap-icons.css";
|
|
|
|
|
2021-07-11 06:33:58 +00:00
|
|
|
nav.navbar {
|
|
|
|
@extend .navbar-expand-lg;
|
|
|
|
@include themer.themed {
|
|
|
|
@extend .navbar-light;
|
|
|
|
background-color: themer.color-of("navbar");
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
@include themer.themed {
|
|
|
|
background-color: themer.color-of("background");
|
|
|
|
color: themer.color-of("text");
|
|
|
|
}
|
2021-07-10 02:47:40 +00:00
|
|
|
}
|