2020-11-06 13:16:40 +00:00
|
|
|
// Minty 4.5.3
|
2020-05-19 16:53:54 +00:00
|
|
|
// Bootswatch
|
|
|
|
|
|
|
|
|
|
|
|
// Variables ===================================================================
|
|
|
|
|
2020-11-06 13:16:40 +00:00
|
|
|
$web-font-path: "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap" !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
@import url($web-font-path);
|
|
|
|
|
|
|
|
// Navbar ======================================================================
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
font-family: $headings-font-family;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-dark {
|
|
|
|
background-color: $secondary !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.border-dark {
|
|
|
|
border-color: $secondary !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Buttons =====================================================================
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
font-family: $headings-font-family;
|
|
|
|
|
|
|
|
&,
|
|
|
|
&:hover {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-light,
|
|
|
|
&-light:hover {
|
|
|
|
color: $gray-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-link,
|
|
|
|
&-link:hover {
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-link.disabled:hover {
|
|
|
|
color: $gray-600;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-outline-primary {
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-outline-secondary {
|
|
|
|
color: $secondary;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-outline-success {
|
|
|
|
color: $success;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-outline-info {
|
|
|
|
color: $info;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-outline-warning {
|
|
|
|
color: $warning;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-outline-danger {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-outline-dark {
|
|
|
|
color: $dark;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-outline-light {
|
|
|
|
color: $light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tables ======================================================================
|
|
|
|
|
|
|
|
.table {
|
|
|
|
&-primary,
|
|
|
|
&-secondary,
|
|
|
|
&-success,
|
|
|
|
&-info,
|
|
|
|
&-warning,
|
|
|
|
&-danger {
|
2020-11-06 13:16:40 +00:00
|
|
|
color: $white;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-primary {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-secondary {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $secondary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-light {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-dark {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-success {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $success;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-info {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-danger {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-warning {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $warning;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-active {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $table-active-bg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-hover {
|
|
|
|
.table-primary:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: darken($primary, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-secondary:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: darken($secondary, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-light:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: darken($light, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-dark:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: darken($dark, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-success:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: darken($success, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-info:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: darken($info, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-danger:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: darken($danger, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-warning:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: darken($warning, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-active:hover {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $table-active-bg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.thead-dark th {
|
|
|
|
background-color: $primary;
|
|
|
|
border-color: $table-border-color;
|
|
|
|
font-family: $headings-font-family;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Forms =======================================================================
|
|
|
|
|
|
|
|
legend {
|
|
|
|
font-family: $headings-font-family;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Navs ========================================================================
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
font-family: $font-family-sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
a {
|
|
|
|
color: $navbar-dark-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: $white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Indicators ==================================================================
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
color: $white;
|
|
|
|
|
2020-11-06 13:16:40 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2020-05-19 16:53:54 +00:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
.alert-link {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-primary {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-secondary {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $secondary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-success {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $success;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-info {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-danger {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-warning {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $warning;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-dark {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-light {
|
2020-11-06 13:16:40 +00:00
|
|
|
&,
|
|
|
|
> th,
|
|
|
|
> td {
|
2020-05-19 16:53:54 +00:00
|
|
|
background-color: $light;
|
|
|
|
}
|
|
|
|
|
|
|
|
&,
|
2020-11-06 13:16:40 +00:00
|
|
|
a:not(.btn),
|
|
|
|
.alert-link {
|
2020-05-19 16:53:54 +00:00
|
|
|
color: $body-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
color: $white;
|
|
|
|
|
|
|
|
&-light {
|
|
|
|
color: $gray-700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Containers ==================================================================
|
|
|
|
|
|
|
|
.card,
|
|
|
|
.list-group-item {
|
2020-11-06 13:16:40 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2020-05-19 16:53:54 +00:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|