mirror of
https://github.com/a2nt/webpack-bootstrap-ui-kit.git
synced 2024-10-22 11:05:45 +02:00
59 lines
1.3 KiB
SCSS
Executable File
59 lines
1.3 KiB
SCSS
Executable File
@import '_mixings';
|
|
@import '_colors';
|
|
|
|
$grid-breakpoints: (
|
|
xs: 0,
|
|
sm: 576px,
|
|
md: 768px,
|
|
lg: 992px,
|
|
xl: 1200px,
|
|
xxl: 1390px,
|
|
xxxl: 1590px
|
|
) !default;
|
|
$container-max-widths: (
|
|
sm: 540px,
|
|
md: 720px,
|
|
lg: 960px,
|
|
xl: 1140px,
|
|
xxl: 1330px,
|
|
xxxl: 1560px
|
|
) !default;
|
|
|
|
$font-family-base: 'Lato', sans-serif !default;
|
|
|
|
$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;
|
|
|
|
$grid-gutter-width: 2rem !default;
|
|
$grid-gutter-height: 2rem !default;
|
|
$grid-gutter-xs-width: $grid-gutter-width / 2 !default;
|
|
$grid-gutter-element-height: $grid-gutter-height * 2 !default;
|
|
|
|
$footer-size: 18.5rem !default;
|
|
$footer-bar-size: 2.5rem !default;
|
|
|
|
/*
|
|
* bootstrap includes
|
|
* keep it at the end
|
|
*/
|
|
|
|
// bootstrap minify bugfix:
|
|
$navbar-dark-toggler-icon-bg: none !default;
|
|
$navbar-light-toggler-icon-bg: none !default;
|
|
|
|
// IE > 9
|
|
$enable-flex: true !default;
|
|
|
|
$enable-responsive-font-sizes: true !default;
|
|
|
|
@import '~bootstrap/scss/functions';
|
|
@import '~bootstrap/scss/variables';
|
|
@import '~bootstrap/scss/mixins';
|