2021-07-07 11:12:38 +00:00
|
|
|
// Cerulean 5.0.2
|
2020-05-19 16:53:54 +00:00
|
|
|
// Bootswatch
|
|
|
|
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Variables
|
2020-11-06 13:16:40 +00:00
|
|
|
|
|
|
|
$text-shadow: 0 1px 0 rgba(0, 0, 0, .05) !default;
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Mixins
|
2020-11-06 13:16:40 +00:00
|
|
|
|
2020-05-19 16:53:54 +00:00
|
|
|
@mixin btn-shadow($color){
|
2021-07-07 11:12:38 +00:00
|
|
|
@include gradient-y-three-colors(tint-color($color, 16%), $color, 60%, shade-color($color, 6%));
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Navbar
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
.navbar {
|
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
&.bg-#{$color} {
|
|
|
|
@include btn-shadow($value);
|
|
|
|
}
|
|
|
|
}
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-brand,
|
|
|
|
.nav-link {
|
2020-11-06 13:16:40 +00:00
|
|
|
text-shadow: $text-shadow;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Buttons
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.btn {
|
2020-11-06 13:16:40 +00:00
|
|
|
text-shadow: $text-shadow;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
color: $gray-700;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
.btn-#{$color} {
|
|
|
|
@include btn-shadow($value);
|
|
|
|
}
|
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
|
|
|
|
|
|
|
.text-secondary {
|
|
|
|
color: $gray-500 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-primary,
|
|
|
|
.bg-success,
|
|
|
|
.bg-info,
|
|
|
|
.bg-warning,
|
|
|
|
.bg-danger,
|
|
|
|
.bg-dark {
|
2020-11-06 13:16:40 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2020-05-19 16:53:54 +00:00
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Navs
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
.dropdown-header {
|
|
|
|
color: $gray-600;
|
|
|
|
}
|
|
|
|
}
|
2021-07-07 11:12:38 +00:00
|
|
|
|
|
|
|
// Indicators
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
&.bg-secondary,
|
|
|
|
&.bg-light {
|
|
|
|
color: $dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|