tgd-frontend/src/styles.scss
2024-10-29 22:39:42 +04:00

37 lines
770 B
SCSS

@import 'animate.css';
@import 'bootstrap/scss/bootstrap';
$thg_red: #9c2f2f;
$thg_orange: #9c2f2f;
$thg_yellow: #f8b12c;
$thg_black: #511f16;
$thg_brown: #511f16;
$thg_background: #dbba33;
$thg_green: #858D3C;
$yellow_gradient: linear-gradient(0deg, rgba(255,166,1,1) 0%, rgba(248,177,44,1) 49%, rgba(255,211,129,1) 100%);
$dark_gradient: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(73, 41, 41) 49%, rgb(73, 69, 60) 100%);
body {
background-color: rgba($thg_background, 1) !important;
overflow: hidden;
}
.bg-olive {
background-color: $thg_green !important;
}
.bg-red {
background-color: $thg_red !important;
}
.bg-yellow {
background-color: $thg_yellow !important;
}
.bg-brown {
background-color: $thg_brown;
}
/* Importing Bootstrap SCSS file. */