2022-11-04 15:49:41 +00:00
|
|
|
// Litera 5.2.2
|
2020-05-19 16:53:54 +00:00
|
|
|
// Bootswatch
|
|
|
|
|
2022-11-04 15:49:41 +00:00
|
|
|
|
|
|
|
// Variables
|
|
|
|
|
|
|
|
:root {
|
|
|
|
color-scheme: light;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Navbar
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.navbar {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
|
|
|
|
&.bg-dark {
|
|
|
|
background-color: $success !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bg-light {
|
2020-11-06 13:16:40 +00:00
|
|
|
background-color: $white !important;
|
|
|
|
border: 1px solid rgba(0, 0, 0, .1);
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
&.navbar-fixed-top {
|
2020-11-06 13:16:40 +00:00
|
|
|
border-width: 0 0 1px;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.navbar-fixed-bottom {
|
2020-11-06 13:16:40 +00:00
|
|
|
border-width: 1px 0 0;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Typography
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
p {
|
|
|
|
font-family: $font-family-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lead {
|
|
|
|
font-family: $font-family-sans-serif;
|
2022-11-04 15:49:41 +00:00
|
|
|
color: $gray-600;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Tables
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
table,
|
|
|
|
.table {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Navs
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.nav,
|
|
|
|
.breadcrumb,
|
|
|
|
.pagination {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Indicators
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.alert {
|
|
|
|
font-size: $font-size-sm;
|
2022-11-04 15:49:41 +00:00
|
|
|
color: $white;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
p {
|
2020-05-19 16:53:54 +00:00
|
|
|
font-family: $font-family-sans-serif;
|
|
|
|
}
|
|
|
|
|
2020-11-06 13:16:40 +00:00
|
|
|
a,
|
|
|
|
.alert-link {
|
|
|
|
font-weight: 400;
|
2022-11-04 15:49:41 +00:00
|
|
|
color: $white;
|
2020-05-19 16:53:54 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
&-#{$color} {
|
|
|
|
@if $enable-gradients {
|
2020-11-06 13:16:40 +00:00
|
|
|
background: $value linear-gradient($value, mix($body-bg, $value, 15%)) repeat-x;
|
2020-05-19 16:53:54 +00:00
|
|
|
} @else {
|
|
|
|
background-color: $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-light {
|
|
|
|
&,
|
2020-11-06 13:16:40 +00:00
|
|
|
a,
|
|
|
|
.alert-link {
|
2020-05-19 16:53:54 +00:00
|
|
|
color: $body-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge {
|
2021-07-07 11:12:38 +00:00
|
|
|
&.bg-light {
|
|
|
|
color: $dark;
|
|
|
|
}
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Containers
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.list-group {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|