You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/styles/scss/config.scss

68 lines
1.5 KiB

// mieux voter vars
$mv-blue-color: #2400fd;
$mv-dark-blue-color: #0a004c;
$mv-light-color: #efefff;
$mv-light-color-hover: rgba(#efefff, 0.8);
$mv-dark-color: #333;
// Override default variables before the import bootstrap
$body-bg: #000000;
$body-color: $mv-light-color;
$modal-content-border-radius: 0px;
$modal-header-border-width: 0px;
$badge-border-radius: 0px;
$theme-colors: (
"primary": $mv-blue-color,
"secondary": $mv-dark-blue-color,
"light": $mv-light-color,
"dark": $mv-dark-color,
"danger": #990000,
"success": #009900,
"info": #2b8299,
"warning": #ff6e11,
);
// $grade-colors: (
// "to-reject": #F2F0FF,
// "insufficient": #C23D13,
// "passable": #C27C13,
// "fair": #C2B113,
// "good": #D3D715,
// "very-good": #A0CF1C,
// "excellent": #3A9918,
// );
$font-size-base: 1rem;
$h1-font-size: $font-size-base * 2.5;
$h2-font-size: $font-size-base * 2;
$h3-font-size: $font-size-base * 1.75;
$h4-font-size: $font-size-base * 1.5;
$h5-font-size: $font-size-base * 1.25;
$font-sizes: (
1: $h1-font-size,
2: $h2-font-size,
3: $h3-font-size,
4: $h4-font-size,
5: $font-size-base * 0.9,
6: $font-size-base * 0.75
);
@import "_bootstrap.scss";
@import "app.scss";
@import "_button.scss";
@import "_badge.scss";
@import "_datepicker.scss";
@import "_header.scss";
@import "_footer.scss";
@import "_modal.scss";
@import "_homePage.scss";
@import "_vote.scss";
@import "_resultVote.scss";
@import "_admin.scss";
@import "_switch.scss";