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