début du thème, footer et header en mobile

This commit is contained in:
Valentin
2023-12-06 17:06:45 +01:00
parent b258cc3181
commit a08922d8be
19 changed files with 644 additions and 12 deletions

View File

@@ -1,4 +1,8 @@
$fluo_green: #00ff80;
$teal: #038788;
$beige: #fcf9ee;
$dark_green: #314e41;
$dark_green: #314e41;
@mixin beige_gradient() {
background: linear-gradient(to bottom, $beige 80%, white 100%);
}

View File

@@ -1,2 +1,40 @@
/* SIZES */
$sm_font_size: 0.8rem;
$sm_font_size: 0.8rem;
$m_font_size: 0.9rem;
$main_font_size: 1.1rem;
$title_size: 2.3rem;
/* MIXINS */
@mixin main_title() {
font-family: "Barlow", sans-serif;
font-size: $title_size;
padding: 0 $x_margin;
margin-top: 1rem;
a {
color: $teal;
}
}
@mixin main_text_content() {
font-family: "Marianne", sans-serif;
font-size: $main_font_size;
line-height: 1.2;
}
@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;
::after {
content: "";
padding-left: 10px;
}
}
}