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);
|
2019-04-03 17:29:03 +02:00
|
|
|
$secondary: #FAB12D;
|
2019-04-24 20:49:52 +02:00
|
|
|
$secondary-invert: findColorInvert($secondary);
|
|
|
|
|
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-05-17 15:28:10 +02:00
|
|
|
"secondary": ($secondary, $secondary-invert)
|
|
|
|
)
|
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;
|
|
|
|
$navbar-height: 7rem;
|
|
|
|
|
|
|
|
|
|
|
|
// Footer
|
|
|
|
$footer-padding: 3rem 1.5rem 4rem;
|
|
|
|
$footer-background-color: $primary;
|
|
|
|
|
|
|
|
// Card
|
|
|
|
$card-background-color: $secondary;
|