curriculum/_sass/main.scss

118 lines
1.7 KiB
SCSS
Raw Normal View History

2019-02-25 00:47:08 +01:00
@charset "utf-8";
2019-03-12 15:23:58 +01:00
/**
Thème
**/
$deep-koamaru:#2b4162;
$myrtle-green:#326273;
$cadet-blue:#5c9ead;
$neon-carrot:#fa9f42;
$white:#ffffff;
2019-03-12 15:23:58 +01:00
/**
Variables Bulma
**/
$primary:$cadet-blue;
$primary-invert:#fff;
$info:$myrtle-green;
2019-03-12 15:23:58 +01:00
$info-invert:#fff;
$footer-color:$deep-koamaru;
$link:$neon-carrot;
$link-hover:"";
2019-03-13 16:29:43 +01:00
html {
background-color: $primary;
}
2019-12-26 18:11:47 +01:00
body {
2019-06-17 23:17:15 +02:00
overflow-x: hidden;
}
2019-12-26 18:11:47 +01:00
.dark-theme-only {
display: none;
2019-06-21 00:48:23 +02:00
}
2019-02-25 00:47:08 +01:00
@import "../node_modules/bulma/bulma";
@import "icon";
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;
}
}
// 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;
}
.media-content {
margin-top: -6px;
}
2019-03-13 16:52:04 +01:00
// Pour devices iOS qui ont un notch (si c'est pas un device avec un notch, it's no-tch your problem)
div.hero-body {
margin-left: env(safe-area-inset-left);
2019-03-13 16:49:28 +01:00
margin-right: env(safe-area-inset-right);
}
section#contact .button {
min-width: 155px;
2019-03-15 17:30:26 +01:00
}
@media screen and (max-width: 768px) {
.button.is-fullw-mobile {
display: flex;
width: 100%;
}
2019-03-23 23:35:17 +01:00
}
.displayOnlyOnPrint {
2019-12-26 18:11:47 +01:00
display: none;
}
#buttonsUnderPhoto a {
2019-12-26 18:11:47 +01:00
padding-left: 16px;
padding-bottom: 0;
}
2019-12-26 18:11:47 +01:00
#photosAndButtons .media-content p+p {
margin-top: -16px;
2019-03-26 14:25:13 +00:00
}
2019-12-26 18:11:47 +01:00
.tile p.title {
font-size: 25px;
}
//
2019-12-26 18:11:47 +01:00
footer small {
color: $white;
2019-09-21 17:44:24 +02:00
}
// Photo de Profil
2019-12-26 18:11:47 +01:00
#photoProfil {
background-color: lightgray;
2019-09-21 17:44:24 +02:00
}
2020-03-22 16:47:42 +01:00
#mailWhenNoJavascript{
text-align: left;
font-size: 20px;
}
@import "dark-theme";