2019-12-20 03:54:33 +01:00
|
|
|
@import '_mixings';
|
|
|
|
@import '_colors';
|
|
|
|
|
2020-04-18 06:39:12 +02:00
|
|
|
// screen size - 32px (ex. 1400 - 32 = 1368)
|
2019-12-20 03:54:33 +01:00
|
|
|
$grid-breakpoints: (
|
|
|
|
xs: 0,
|
|
|
|
sm: 576px,
|
|
|
|
md: 768px,
|
|
|
|
lg: 992px,
|
2020-04-18 06:39:12 +02:00
|
|
|
xl: 1168px,
|
|
|
|
xxl: 1368px,
|
|
|
|
xxxl: 1568px,
|
|
|
|
xxxxl: 1868px
|
2019-12-20 03:54:33 +01:00
|
|
|
) !default;
|
2020-04-18 06:39:12 +02:00
|
|
|
// screen size - (32px * 2) (ex. 1400 - 64 = 1336)
|
2019-12-20 03:54:33 +01:00
|
|
|
$container-max-widths: (
|
|
|
|
sm: 540px,
|
|
|
|
md: 720px,
|
|
|
|
lg: 960px,
|
2020-04-18 06:39:12 +02:00
|
|
|
xl: 1136px,
|
|
|
|
xxl: 1336px,
|
|
|
|
xxxl: 1536px,
|
|
|
|
xxxxl: 1836px
|
2019-12-20 03:54:33 +01:00
|
|
|
) !default;
|
|
|
|
|
2020-06-15 20:45:19 +02:00
|
|
|
$full-body-min-width: map-get($grid-breakpoints, 'lg') !default;
|
|
|
|
|
2020-04-29 09:48:09 +02:00
|
|
|
$font-family-sans-serif: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
|
|
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
|
|
|
|
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !default;
|
|
|
|
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
|
|
|
|
'Liberation Mono', 'Courier New', monospace !default;
|
|
|
|
|
|
|
|
$font-family-base: 'Lato', $font-family-sans-serif !default;
|
2019-08-27 17:25:41 +02:00
|
|
|
|
2019-11-07 17:35:19 +01:00
|
|
|
$font-size-base: 1rem !default;
|
|
|
|
|
|
|
|
// start font-sizing from h2
|
|
|
|
$h1-font-size: $font-size-base * 2.5 !default;
|
|
|
|
$h2-font-size: $h1-font-size !default;
|
|
|
|
$h3-font-size: $font-size-base * 2 !default;
|
|
|
|
$h4-font-size: $font-size-base * 1.75 !default;
|
|
|
|
$h5-font-size: $font-size-base * 1.5 !default;
|
|
|
|
$h6-font-size: $font-size-base * 1.25 !default;
|
|
|
|
|
2019-10-20 04:40:30 +02:00
|
|
|
$grid-gutter-width: 2rem !default;
|
|
|
|
$grid-gutter-height: 2rem !default;
|
|
|
|
$grid-gutter-xs-width: $grid-gutter-width / 2 !default;
|
2021-01-31 14:29:24 +01:00
|
|
|
$grid-gutter-element-height: $grid-gutter-height !default;
|
2019-06-08 17:20:51 +02:00
|
|
|
|
2020-02-24 16:16:06 +01:00
|
|
|
$field-gutter-height: $grid-gutter-height / 2 !default;
|
|
|
|
$col-block-gutter-height: $grid-gutter-height / 4 !default;
|
|
|
|
|
2019-10-20 04:40:30 +02:00
|
|
|
$footer-size: 18.5rem !default;
|
|
|
|
$footer-bar-size: 2.5rem !default;
|
2019-06-08 17:20:51 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* bootstrap includes
|
|
|
|
* keep it at the end
|
|
|
|
*/
|
|
|
|
|
|
|
|
// bootstrap minify bugfix:
|
2019-10-20 04:40:30 +02:00
|
|
|
$navbar-dark-toggler-icon-bg: none !default;
|
|
|
|
$navbar-light-toggler-icon-bg: none !default;
|
2019-06-08 17:20:51 +02:00
|
|
|
|
|
|
|
// IE > 9
|
2019-10-20 04:40:30 +02:00
|
|
|
$enable-flex: true !default;
|
2019-06-08 17:20:51 +02:00
|
|
|
|
2019-12-17 18:05:46 +01:00
|
|
|
$enable-responsive-font-sizes: true !default;
|
|
|
|
|
2019-12-20 03:54:33 +01:00
|
|
|
@import '~bootstrap/scss/functions';
|
|
|
|
@import '~bootstrap/scss/variables';
|
|
|
|
@import '~bootstrap/scss/mixins';
|
2021-01-31 14:29:24 +01:00
|
|
|
|
|
|
|
// Add your site-wide + content editor typography styling
|
|
|
|
$nav-link-hover-bg: darken($body-bg, 10%);
|
|
|
|
$nav-link-hover-color: lighten($body-color, 10%);
|
|
|
|
|
|
|
|
$full-body-min-width: map-get($grid-breakpoints, 'md');
|
|
|
|
|
|
|
|
$header-bg: $dark;
|
|
|
|
$header-color: darken($white, 5%);
|
|
|
|
$header-link: $white;
|
|
|
|
|
|
|
|
$main-nav-link-color: $white;
|
|
|
|
$main-nav-link-bg: none;
|
|
|
|
|
|
|
|
$main-nav-toggler-size: 2rem;
|
|
|
|
|
|
|
|
$main-nav-link-hover-bg: none;
|
|
|
|
$main-nav-link-hover-color: $primary;
|
|
|
|
|
|
|
|
$main-nav-dropdown-bg: $header-bg;
|
|
|
|
$main-nav-dropdown-color: $header-link;
|
|
|
|
$main-nav-dropdown-hover-bg: darken($header-bg, 10%);
|
|
|
|
$main-nav-dropdown-hover-color: $primary;
|
|
|
|
|
|
|
|
$footer-size: 7rem;
|
|
|
|
$footer-bar-size: 2rem;
|
|
|
|
|
|
|
|
$footer-bg: $dark;
|
|
|
|
$footer-color: darken($white, 5%);
|
|
|
|
$footer-link: $white;
|
|
|
|
|
|
|
|
$footer-footer-bg: darken($dark, 5%);
|