26 lines
577 B
SCSS
26 lines
577 B
SCSS
// In this file you can override the default variables of Bootstrap
|
|
// Do you want primary to be green? Just add "$primary: #00FF00;" to this file and the theme will automatically compile the scss for you.
|
|
$primary: #e30613;
|
|
$secondary: #cccccc;
|
|
$tertiary: #f5f5f5;
|
|
|
|
$font-size-base: 1.3rem;
|
|
|
|
|
|
$navbar-light-color: white;
|
|
$navbar-light-hover-color: darken(white, 10%);
|
|
$navbar-light-active-color: white;
|
|
|
|
$btn-border-radius: 0;
|
|
$btn-border-radius-sm: 0;
|
|
$btn-border-radius-lg: 0;
|
|
|
|
$container-max-widths: (
|
|
sm: 540px,
|
|
md: 720px,
|
|
lg: 960px,
|
|
xl: 1140px,
|
|
xxl: 1400px
|
|
);
|
|
|