2020-10-16 10:34:15 +00:00
|
|
|
@import "~bulma/sass/utilities/functions.sass";
|
|
|
|
@import "~bulma/sass/utilities/initial-variables.sass";
|
2020-11-02 11:42:49 +00:00
|
|
|
@import "~bulma/sass/utilities/derived-variables.sass";
|
2019-04-24 18:49:52 +00:00
|
|
|
|
2020-06-17 13:54:24 +00:00
|
|
|
$bleuvert: #1e7d97;
|
|
|
|
$jaune: #ffd599;
|
|
|
|
$violet: #424056;
|
|
|
|
|
2020-06-24 08:05:22 +00:00
|
|
|
/**
|
|
|
|
* Text body, paragraphs
|
|
|
|
*/
|
2020-06-25 09:38:12 +00:00
|
|
|
$violet-1: #3a384c;
|
2020-06-24 08:05:22 +00:00
|
|
|
$violet-2: #474467;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Titles, dark borders, buttons
|
|
|
|
*/
|
2020-06-25 09:38:12 +00:00
|
|
|
$violet-3: #3c376e;
|
2020-06-24 08:05:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Borders
|
|
|
|
*/
|
2020-06-25 09:38:12 +00:00
|
|
|
$borders: #d7d6de;
|
|
|
|
$backgrounds: #ecebf2;
|
2020-06-24 08:05:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Text
|
|
|
|
*/
|
|
|
|
$purple-1: #757199;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Background
|
|
|
|
*/
|
2020-06-25 09:38:12 +00:00
|
|
|
$purple-2: #cdcaea;
|
|
|
|
$purple-3: #e6e4f4;
|
2020-06-24 08:05:22 +00:00
|
|
|
|
2020-06-25 09:38:12 +00:00
|
|
|
$orange-2: #ed8d07;
|
|
|
|
$orange-3: #d35204;
|
2020-06-24 08:05:22 +00:00
|
|
|
|
2020-06-25 09:38:12 +00:00
|
|
|
$yellow-1: #ffd599;
|
|
|
|
$yellow-2: #fff1de;
|
|
|
|
$yellow-3: #fbd5cb;
|
2020-06-24 08:05:22 +00:00
|
|
|
$yellow-4: #f7ba30;
|
|
|
|
|
2020-06-17 13:54:24 +00:00
|
|
|
$primary: $bleuvert;
|
2019-04-24 18:49:52 +00:00
|
|
|
$primary-invert: findColorInvert($primary);
|
2020-06-17 13:54:24 +00:00
|
|
|
$secondary: $jaune;
|
2019-04-24 18:49:52 +00:00
|
|
|
$secondary-invert: findColorInvert($secondary);
|
|
|
|
|
2020-06-24 08:05:22 +00:00
|
|
|
$background-color: $violet-2;
|
2020-06-17 13:54:24 +00:00
|
|
|
|
2020-06-25 09:38:12 +00:00
|
|
|
$success: #0d8758;
|
2019-10-10 11:36:11 +00:00
|
|
|
$success-invert: findColorInvert($success);
|
|
|
|
$info: #36bcd4;
|
|
|
|
$info-invert: findColorInvert($info);
|
2020-06-25 09:38:12 +00:00
|
|
|
$danger: #ff2e54;
|
2019-10-10 11:36:11 +00:00
|
|
|
$danger-invert: findColorInvert($danger);
|
2020-06-17 13:54:24 +00:00
|
|
|
$link: $primary;
|
|
|
|
$link-invert: $primary-invert;
|
2020-06-24 08:05:22 +00:00
|
|
|
$text: $violet-1;
|
2021-06-10 08:32:14 +00:00
|
|
|
$grey: #757575;
|
2019-10-10 11:36:11 +00:00
|
|
|
|
2020-06-25 09:38:12 +00:00
|
|
|
$colors: map-merge(
|
|
|
|
$colors,
|
|
|
|
(
|
|
|
|
"primary": (
|
|
|
|
$primary,
|
2020-02-18 07:57:00 +00:00
|
|
|
$primary-invert,
|
|
|
|
),
|
2020-06-25 09:38:12 +00:00
|
|
|
"secondary": (
|
|
|
|
$secondary,
|
2020-02-18 07:57:00 +00:00
|
|
|
$secondary-invert,
|
|
|
|
),
|
2020-06-25 09:38:12 +00:00
|
|
|
"success": (
|
|
|
|
$success,
|
2020-02-18 07:57:00 +00:00
|
|
|
$success-invert,
|
|
|
|
),
|
2020-06-25 09:38:12 +00:00
|
|
|
"info": (
|
|
|
|
$info,
|
2020-02-18 07:57:00 +00:00
|
|
|
$info-invert,
|
|
|
|
),
|
2020-06-25 09:38:12 +00:00
|
|
|
"danger": (
|
|
|
|
$danger,
|
2020-02-18 07:57:00 +00:00
|
|
|
$danger-invert,
|
|
|
|
),
|
2020-06-25 09:38:12 +00:00
|
|
|
"link": (
|
|
|
|
$link,
|
2020-06-17 13:54:24 +00:00
|
|
|
$link-invert,
|
|
|
|
),
|
2021-02-24 18:06:48 +00:00
|
|
|
"grey": (
|
|
|
|
$grey,
|
|
|
|
findColorInvert($grey),
|
|
|
|
),
|
2020-06-25 09:38:12 +00:00
|
|
|
)
|
|
|
|
);
|
2019-04-03 15:29:03 +00:00
|
|
|
|
|
|
|
// Navbar
|
|
|
|
$navbar-background-color: $secondary;
|
2020-06-17 13:54:24 +00:00
|
|
|
$navbar-item-color: $background-color;
|
2019-10-03 09:37:34 +00:00
|
|
|
$navbar-height: 4rem;
|
2019-04-03 15:29:03 +00:00
|
|
|
|
|
|
|
// Footer
|
2020-06-15 16:12:49 +00:00
|
|
|
$footer-padding: 3rem 1.5rem 1rem;
|
2020-06-17 13:54:24 +00:00
|
|
|
$footer-background-color: $background-color;
|
2019-12-20 12:04:34 +00:00
|
|
|
|
2020-02-18 07:57:00 +00:00
|
|
|
$body-background-color: #efeef4;
|
2019-12-20 12:04:34 +00:00
|
|
|
$fullhd-enabled: false;
|
|
|
|
$hero-body-padding-medium: 6rem 1.5rem;
|
|
|
|
|
2020-06-25 09:38:12 +00:00
|
|
|
main > .container {
|
2020-02-18 07:57:00 +00:00
|
|
|
background: $body-background-color;
|
2020-10-22 07:37:30 +00:00
|
|
|
min-height: 70vh;
|
2020-02-18 07:47:41 +00:00
|
|
|
}
|
|
|
|
|
2020-02-18 07:57:00 +00:00
|
|
|
$title-color: #3c376e;
|
2020-06-25 09:38:12 +00:00
|
|
|
$title-family: "Liberation Sans", "Helvetica Neue", Roboto, Helvetica, Arial,
|
|
|
|
serif;
|
2020-02-18 07:47:41 +00:00
|
|
|
$title-weight: 700;
|
|
|
|
$title-size: 40px;
|
|
|
|
$title-sub-size: 45px;
|
|
|
|
$title-sup-size: 30px;
|
|
|
|
|
2020-02-18 07:57:00 +00:00
|
|
|
$subtitle-color: #3a384c;
|
2020-06-25 09:38:12 +00:00
|
|
|
$subtitle-family: "Liberation Sans", "Helvetica Neue", Roboto, Helvetica, Arial,
|
|
|
|
serif;
|
2020-02-18 07:47:41 +00:00
|
|
|
$subtitle-weight: 400;
|
|
|
|
$subtitle-size: 32px;
|
|
|
|
$subtitle-sub-size: 30px;
|
|
|
|
$subtitle-sup-size: 15px;
|
2020-06-24 08:05:22 +00:00
|
|
|
|
2020-02-18 07:47:41 +00:00
|
|
|
.subtitle {
|
2020-02-18 07:57:00 +00:00
|
|
|
background: $secondary;
|
|
|
|
display: inline;
|
|
|
|
padding: 3px 8px;
|
|
|
|
margin: 15px auto 30px;
|
2020-06-15 16:12:49 +00:00
|
|
|
}
|
2020-06-16 14:15:38 +00:00
|
|
|
|
2020-08-31 10:40:30 +00:00
|
|
|
//$input-border-color: #dbdbdb;
|
2020-06-17 13:54:24 +00:00
|
|
|
$breadcrumb-item-color: $primary;
|
2020-06-16 14:15:38 +00:00
|
|
|
$checkbox-background-color: #fff;
|
2020-06-25 09:38:12 +00:00
|
|
|
$title-color: $violet-3;
|