Files
karma/ui/src/App.scss
Łukasz Mierzwa 9ee15fa9cc feat(ui): bundle Lato fonts
With this change the browser won't need to make any external requests to render the page.

Fixes #425
2019-02-08 20:33:36 +00:00

41 lines
1.0 KiB
SCSS

// bundled Lato font, so we don't need to talk to Google Fonts API
@import "./Fonts.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;
// fix active tab color, for some reason it ends up with $primary as bg color
$nav-tabs-link-active-bg: #fff;
@import "~bootswatch/dist/flatly/variables";
@import "~bootstrap/scss/bootstrap";
@import "~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);
}
// version for modals
.bg-primary-transparent-80 {
background-color: rgba($dark, 0.8);
}
.cursor-pointer {
cursor: pointer;
}