2019-02-25 00:47:08 +01:00
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
// Customization
|
|
|
|
|
|
|
|
// You can easily customize Bulma with your own variables.
|
|
|
|
// Just uncomment the following block to see the result.
|
|
|
|
|
|
|
|
/*
|
|
|
|
// 1. Import the initial variables
|
|
|
|
@import "../node_modules/bulma/sass/utilities/initial-variables";
|
|
|
|
|
|
|
|
// 2. Set your own initial variables
|
|
|
|
// Update the blue shade, used for links
|
|
|
|
$blue: #06bcef;
|
|
|
|
// Add pink and its invert
|
|
|
|
$pink: #ff8080;
|
|
|
|
$pink-invert: #fff;
|
|
|
|
// Update the sans-serif font family
|
|
|
|
$family-sans-serif: "Helvetica", "Arial", sans-serif;
|
|
|
|
|
|
|
|
// 3. Set the derived variables
|
|
|
|
// Use the new pink as the primary color
|
|
|
|
$primary: $pink;
|
|
|
|
$primary-invert: $pink-invert;
|
|
|
|
|
|
|
|
// 4. Import the rest of Bulma
|
|
|
|
*/
|
|
|
|
|
2019-03-12 15:23:58 +01:00
|
|
|
/**
|
|
|
|
Thème
|
|
|
|
**/
|
2019-03-11 11:24:41 +01:00
|
|
|
$orange-yellow:#F2CD60;
|
|
|
|
$maize:#F2E863;
|
2019-03-12 15:23:58 +01:00
|
|
|
$wheat:#f5e0b7;
|
|
|
|
$vivid-tangerine:#efa48b;
|
|
|
|
$granite-gray:#685369;
|
2019-03-11 11:24:41 +01:00
|
|
|
|
2019-03-12 15:23:58 +01:00
|
|
|
/**
|
|
|
|
Variables Bulma
|
|
|
|
**/
|
|
|
|
$primary:$orange-yellow;
|
2019-03-11 11:24:41 +01:00
|
|
|
$primary-invert:#fff;
|
2019-03-12 15:23:58 +01:00
|
|
|
$info:$vivid-tangerine;
|
|
|
|
$info-invert:#fff;
|
|
|
|
$footer-color:$granite-gray;
|
|
|
|
$link:$orange-yellow;
|
2019-03-05 16:01:59 +01:00
|
|
|
|
2019-02-25 00:47:08 +01:00
|
|
|
@import "../node_modules/bulma/bulma";
|
2019-03-05 16:01:59 +01:00
|
|
|
|
2019-03-07 11:46:02 +01:00
|
|
|
#idCard {
|
|
|
|
|
|
|
|
.hero-body {
|
|
|
|
padding-bottom: 2rem;
|
|
|
|
padding-top: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
// permet de re-aligner les tags avec les subtitles
|
|
|
|
.tags {
|
|
|
|
margin-top: -1.25rem;
|
|
|
|
}
|
2019-03-11 11:24:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// retire les barres de scroll des panneaux experience/education
|
|
|
|
#experiences .media-content {
|
|
|
|
overflow: hidden;
|
2019-03-12 15:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
background-color: $footer-color !important;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer strong {
|
|
|
|
color: #fff;
|
2019-03-05 16:01:59 +01:00
|
|
|
}
|