2021-07-07 11:12:38 +00:00
|
|
|
// Darkly 5.0.2
|
2020-05-19 16:53:54 +00:00
|
|
|
// Bootswatch
|
|
|
|
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Variables
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2020-11-06 13:16:40 +00:00
|
|
|
$web-font-path: "https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap" !default;
|
2021-07-07 11:12:38 +00:00
|
|
|
@if $web-font-path {
|
|
|
|
@import url($web-font-path);
|
|
|
|
}
|
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
|
|
|
|
|
|
|
.blockquote {
|
|
|
|
&-footer {
|
|
|
|
color: $gray-600;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Forms
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.input-group-addon {
|
2020-11-06 13:16:40 +00:00
|
|
|
color: $white;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
.form-floating > label {
|
|
|
|
color: $gray-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Navs
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.nav-tabs,
|
|
|
|
.nav-pills {
|
|
|
|
.nav-link,
|
|
|
|
.nav-link.active,
|
|
|
|
.nav-link.active:focus,
|
|
|
|
.nav-link.active:hover,
|
|
|
|
.nav-item.open .nav-link,
|
|
|
|
.nav-item.open .nav-link:focus,
|
|
|
|
.nav-item.open .nav-link:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
color: $white;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb a {
|
2020-11-06 13:16:40 +00:00
|
|
|
color: $white;
|
2021-07-07 11:12:38 +00:00
|
|
|
text-decoration: none;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Indicators
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.alert {
|
|
|
|
border: none;
|
|
|
|
color: $white;
|
|
|
|
|
|
|
|
a,
|
|
|
|
.alert-link {
|
2020-11-06 13:16:40 +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 {
|
|
|
|
background: $value linear-gradient(180deg, mix($white, $value, 15%), $value) repeat-x;
|
|
|
|
} @else {
|
|
|
|
background-color: $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|