mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
44 lines
1.0 KiB
SCSS
44 lines
1.0 KiB
SCSS
// custom "dark" color, little less dark than flatly
|
|
$blue: #455a64;
|
|
// body background color should be same as navbar, so it blends into one
|
|
$body-bg: $blue;
|
|
// default is ~0.97rem
|
|
$font-size-base: 1rem;
|
|
|
|
// make links light gray by default instead of green
|
|
$link-color: #7b8a8b; // $gray-700
|
|
|
|
// make dark darker, default it's $gray-700
|
|
$dark: #3b4247;
|
|
|
|
@import "../node_modules/bootswatch/dist/flatly/variables";
|
|
@import "../node_modules/bootstrap/scss/bootstrap";
|
|
@import "../node_modules/bootswatch/dist/flatly/bootswatch";
|
|
|
|
// negative margin used for silence expiry badges with progress
|
|
.nmb-05 {
|
|
margin-bottom: -($spacer * 0.125) !important;
|
|
}
|
|
|
|
// this is used for navbar, to make it transparent
|
|
.bg-primary-transparent {
|
|
background-color: rgba($primary, 0.95);
|
|
}
|
|
|
|
// silence block gets a different color on hover
|
|
.hover-bg-light:hover {
|
|
background-color: $light;
|
|
}
|
|
.hover-bg-light:focus {
|
|
box-shadow: unset;
|
|
}
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
// remove triangle from dropdowns
|
|
.dropdown-toggle::after {
|
|
display: none;
|
|
}
|