2019-04-24 20:49:52 +02:00
|
|
|
@import "~bulma/sass/utilities/_all";
|
|
|
|
|
2019-04-03 17:29:03 +02:00
|
|
|
$primary: #424056;
|
2019-04-24 20:49:52 +02:00
|
|
|
$primary-invert: findColorInvert($primary);
|
2020-02-18 08:47:41 +01:00
|
|
|
$secondary: #ffcc85;
|
2019-04-24 20:49:52 +02:00
|
|
|
$secondary-invert: findColorInvert($secondary);
|
|
|
|
|
2020-02-18 08:47:41 +01:00
|
|
|
$success: #0ECCAF;
|
2019-10-10 13:36:11 +02:00
|
|
|
$success-invert: findColorInvert($success);
|
|
|
|
$info: #36bcd4;
|
|
|
|
$info-invert: findColorInvert($info);
|
|
|
|
$danger: #ff7061;
|
|
|
|
$danger-invert: findColorInvert($danger);
|
|
|
|
|
2019-05-17 15:28:10 +02:00
|
|
|
$colors: map-merge(
|
|
|
|
$colors,
|
|
|
|
(
|
2019-04-24 20:49:52 +02:00
|
|
|
"primary": ($primary, $primary-invert),
|
2019-10-10 13:36:11 +02:00
|
|
|
"secondary": ($secondary, $secondary-invert),
|
|
|
|
"success": ($success, $success-invert),
|
|
|
|
"info": ($info, $info-invert),
|
|
|
|
"danger": ($danger, $danger-invert),
|
2019-05-17 15:28:10 +02:00
|
|
|
)
|
2019-04-24 20:49:52 +02:00
|
|
|
);
|
2019-04-03 17:29:03 +02:00
|
|
|
|
|
|
|
// Navbar
|
|
|
|
$navbar-background-color: $secondary;
|
|
|
|
$navbar-item-color: $primary;
|
2019-10-03 11:37:34 +02:00
|
|
|
$navbar-height: 4rem;
|
2019-04-03 17:29:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Footer
|
|
|
|
$footer-padding: 3rem 1.5rem 4rem;
|
|
|
|
$footer-background-color: $primary;
|
2019-12-20 13:04:34 +01:00
|
|
|
|
|
|
|
$body-background-color: #f8f7fa;
|
|
|
|
$fullhd-enabled: false;
|
|
|
|
$hero-body-padding-medium: 6rem 1.5rem;
|
|
|
|
|
|
|
|
main > .container {
|
|
|
|
background: $white;
|
2020-02-18 08:47:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$title-color: #3C376E;
|
|
|
|
$title-family: "Liberation Sans", "Helvetica Neue", Roboto, Helvetica, Arial, serif;
|
|
|
|
$title-weight: 700;
|
|
|
|
$title-size: 40px;
|
|
|
|
$title-sub-size: 45px;
|
|
|
|
$title-sup-size: 30px;
|
|
|
|
|
|
|
|
$subtitle-color: #3A384C;
|
|
|
|
$subtitle-family: "Liberation Sans", "Helvetica Neue", Roboto, Helvetica, Arial, serif;
|
|
|
|
$subtitle-weight: 400;
|
|
|
|
$subtitle-size: 32px;
|
|
|
|
$subtitle-sub-size: 30px;
|
|
|
|
$subtitle-sup-size: 15px;
|
|
|
|
.title {
|
|
|
|
margin: 30px auto 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
background: $secondary;
|
|
|
|
display: inline;
|
|
|
|
padding: 3px 8px;
|
|
|
|
margin: 15px auto 30px;
|
2019-12-20 13:04:34 +01:00
|
|
|
}
|