2019-06-08 17:20:51 +02:00
|
|
|
/*
|
|
|
|
* Your custom variables
|
|
|
|
*/
|
|
|
|
|
2019-07-10 20:59:57 +02:00
|
|
|
$grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1390px, xxxl: 1590px);
|
|
|
|
$container-max-widths: (sm: 540px, md: 720px, lg: 960px, xl: 1140px, xxl: 1330px, xxxl: 1560px);
|
|
|
|
|
2019-06-08 17:20:51 +02:00
|
|
|
$font-family-base: "Lato", sans-serif;
|
|
|
|
|
2019-10-20 01:40:40 +02:00
|
|
|
$grid-gutter-width: 30px;
|
|
|
|
$grid-gutter-xs-width: $grid-gutter-width / 2;
|
2019-06-08 17:20:51 +02:00
|
|
|
$grid-gutter-height: 8rem;
|
|
|
|
|
|
|
|
$gray-900: #212529;
|
|
|
|
$white: #fff;
|
|
|
|
$blue: #016cb1;
|
|
|
|
$yellow: #ecac02;
|
|
|
|
|
2019-09-10 12:57:08 +02:00
|
|
|
$dark: #000;
|
|
|
|
|
2019-06-08 17:20:51 +02:00
|
|
|
//$primary: $dark;
|
|
|
|
$bg-alt: $yellow;
|
|
|
|
|
|
|
|
$body-color: $gray-900;
|
|
|
|
$navbar-light-active-color: $blue;
|
|
|
|
|
2019-08-27 17:25:41 +02:00
|
|
|
$navbar-dark-hover-background: $dark;
|
|
|
|
$navbar-dark-active-background: $dark;
|
2019-09-10 12:57:08 +02:00
|
|
|
$navbar-dark-show-color: $blue;
|
|
|
|
$navbar-dark-show-background: $dark;
|
2019-08-27 17:25:41 +02:00
|
|
|
|
2019-06-08 17:20:51 +02:00
|
|
|
$dropdown-border-color: $white;
|
|
|
|
|
2019-08-27 17:25:41 +02:00
|
|
|
$footer-size: 18.5rem;
|
2019-06-08 17:20:51 +02:00
|
|
|
$footer-bar-size: 2.5rem;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* bootstrap includes
|
|
|
|
* keep it at the end
|
|
|
|
*/
|
|
|
|
|
|
|
|
// bootstrap minify bugfix:
|
|
|
|
$navbar-dark-toggler-icon-bg: none;
|
|
|
|
$navbar-light-toggler-icon-bg: none;
|
|
|
|
|
|
|
|
// IE > 9
|
|
|
|
$enable-flex: true;
|
|
|
|
|
|
|
|
@import "~bootstrap/scss/functions";
|
|
|
|
@import "~bootstrap/scss/variables";
|
|
|
|
@import "~bootstrap/scss/mixins";
|
2019-10-20 01:40:40 +02:00
|
|
|
@import "_components/_variables";
|