modifs pas finies de la carte interactive + clean des scss

This commit is contained in:
Valentin
2024-11-02 04:12:25 +01:00
parent c56dadee02
commit e6d39d0dc3
24 changed files with 943 additions and 642 deletions

View File

@@ -6,10 +6,6 @@
}
} */
body {
overflow-x: hidden;
}
.layout-container {
margin: 0 !important;
}
@@ -25,3 +21,8 @@ em {
#block-erabletheme-titredepage {
display: none;
}
// debug
/* * {
border: solid 1px red !important;
} */

View File

@@ -9,58 +9,58 @@ $title_size: 2.3rem;
/* MIXINS */
@mixin main_title() {
font-family: "Barlow Condensed", sans-serif;
font-size: $l_font_size;
padding: 0 $x_margin;
margin-top: 1rem;
color: $teal;
text-transform: uppercase;
a {
color: $teal;
}
@media (min-width: $breakpoint_tablet) {
font-size: $title_size;
}
font-family: "Barlow Condensed", sans-serif;
font-size: $l_font_size;
padding: 0 $x_margin;
margin-top: 1rem;
color: $teal;
text-transform: uppercase;
a {
color: $teal;
}
@media (min-width: $breakpoint_tablet) {
font-size: $title_size;
}
}
@mixin main_text_content() {
font-family: "Marianne", sans-serif;
font-size: $main_font_size;
line-height: 1.4;
font-family: "Marianne", sans-serif;
font-size: $main_font_size;
line-height: 1.4;
}
@mixin sous_titre() {
font-family: "Marianne", sans-serif;
font-size: $m_font_size;
color: $teal;
font-weight: 800;
@media (min-width: $breakpoint_tablet) {
font-size: $l_font_size;
}
font-family: "Marianne", sans-serif;
font-size: $m_font_size;
color: $teal;
font-weight: 800;
@media (min-width: $breakpoint_tablet) {
font-size: $l_font_size;
}
}
@mixin sous_titre_alt() {
font-family: "Barlow", sans-serif;
color: black;
font-size: $xl_font_size;
font-family: "Barlow", sans-serif;
color: black;
font-size: $xl_font_size;
}
@mixin fluo_button() {
a {
text-align: center;
color: black;
font-family: "Marianne", sans-serif;
font-weight: 800;
font-size: $m_font_size;
background-color: white;
border: solid 2px $fluo_green;
padding: 9px 18px;
transition: background-color 0.3s ease;
svg {
display: none;
}
}
a:hover {
background-color: $fluo_green;
a {
text-align: center;
color: black;
font-family: "Marianne", sans-serif;
font-weight: 800;
font-size: $m_font_size;
background-color: white;
border: solid 2px $fluo_green;
padding: 9px 18px;
transition: background-color 0.3s ease;
svg {
display: none;
}
}
a:hover {
background-color: $fluo_green;
}
}