mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
073b7b6717
* Bootstrap5 migration
118 lines
No EOL
1.4 KiB
SCSS
Executable file
118 lines
No EOL
1.4 KiB
SCSS
Executable file
// Litera 5.0.2
|
|
// Bootswatch
|
|
|
|
// Navbar
|
|
|
|
.navbar {
|
|
font-size: $font-size-sm;
|
|
|
|
&.bg-dark {
|
|
background-color: $success !important;
|
|
}
|
|
|
|
&.bg-light {
|
|
background-color: $white !important;
|
|
border: 1px solid rgba(0, 0, 0, .1);
|
|
|
|
&.navbar-fixed-top {
|
|
border-width: 0 0 1px;
|
|
}
|
|
|
|
&.navbar-fixed-bottom {
|
|
border-width: 1px 0 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Typography
|
|
|
|
p {
|
|
font-family: $font-family-serif;
|
|
}
|
|
|
|
blockquote {
|
|
font-style: italic;
|
|
}
|
|
|
|
footer {
|
|
font-size: $font-size-sm;
|
|
}
|
|
|
|
.lead {
|
|
color: $gray-600;
|
|
font-family: $font-family-sans-serif;
|
|
}
|
|
|
|
// Tables
|
|
|
|
table,
|
|
.table {
|
|
font-size: $font-size-sm;
|
|
}
|
|
|
|
// Navs
|
|
|
|
.nav,
|
|
.breadcrumb,
|
|
.pagination {
|
|
font-size: $font-size-sm;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
font-size: $font-size-sm;
|
|
}
|
|
|
|
// Indicators
|
|
|
|
.alert {
|
|
color: $white;
|
|
font-size: $font-size-sm;
|
|
|
|
&,
|
|
p {
|
|
font-family: $font-family-sans-serif;
|
|
}
|
|
|
|
a,
|
|
.alert-link {
|
|
color: $white;
|
|
font-weight: 400;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@each $color, $value in $theme-colors {
|
|
&-#{$color} {
|
|
@if $enable-gradients {
|
|
background: $value linear-gradient($value, mix($body-bg, $value, 15%)) repeat-x;
|
|
} @else {
|
|
background-color: $value;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-light {
|
|
&,
|
|
a,
|
|
.alert-link {
|
|
color: $body-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.badge {
|
|
&.bg-light {
|
|
color: $dark;
|
|
}
|
|
}
|
|
|
|
// Containers
|
|
|
|
.list-group {
|
|
font-size: $font-size-sm;
|
|
}
|
|
|
|
.breadcrumb {
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
} |