Collection: amélioration + lancement d'événements

This commit is contained in:
2018-05-25 00:58:20 +02:00
parent 49812d43c4
commit d3d8f27c6d
5 changed files with 132 additions and 34 deletions

View File

@@ -6,8 +6,8 @@ $chill-yellow: #eec84a;
$chill-orange: #e2793d;
$chill-red: #df4949;
$chill-gray: #ececec;
$chill-beige :#cabb9f;
$chill-pink :#dd506d;
$chill-beige: #cabb9f;
$chill-pink: #dd506d;
$chill-dark-gray: #333333;
$chill-light-gray: #b2b2b2;
$chill-llight-gray: $chill-light-gray;
@@ -32,3 +32,34 @@ $yellow: $chill-yellow;
$black: #111111;
$white: #ffffff;
$light-grey: $chill-light-gray;
/*
due to a bug in sass, we must re-declare the variable in css
(use of a sass variable after -- does not work)
*/
:root {
--chill-blue: #334d5c;
--chill-green: #43b29d;
--chill-green-dark: #328474;
--chill-yellow: #eec84a;
--chill-orange: #e2793d;
--chill-red: #df4949;
--chill-gray: #ececec;
--chill-beige: #cabb9f;
--chill-pink: #dd506d;
--chill-dark-gray: #333333;
--chill-light-gray: #b2b2b2;
--chill-llight-gray: #b2b2b2;
--dark-grey: #333333;
--orange: #e2793d;
--red: #df4949;
--green: #43b29d;
--blue: #334d5c;
--yellow: #eec84a;
--black: #111111;
--white: #ffffff;
--light-grey: #b2b2b2;
}