intégration du design il manque que les images de fond

This commit is contained in:
Valentin
2023-12-15 20:04:59 +01:00
parent cb35336870
commit a0137d95ac
19 changed files with 832 additions and 121 deletions

View File

@@ -1,4 +1,5 @@
.fullpage {
margin-bottom: 10vh;
margin-top: -3vh;
padding-top: 3vh;
@include beige_gradient();
@@ -16,6 +17,7 @@
.sous_titre {
@include main_text_content();
font-size: $l_font_size;
padding: 0 $x_margin;
}
@@ -29,11 +31,33 @@
margin-top: 7vh;
}
.liens_fixed {
.liens_fixed > div > div, .file_fixed > div > div {
padding: 0 $x_margin;
text-align: right;
margin: 2rem 0;
@include fluo_button();
a {
display: inline-block;
max-width: calc(25vw - $x_margin * 2);
}
@media (min-width: $breakpoint_tablet) {
padding: 0;
}
@media (min-width: $breakpoint_desktop) {
margin-bottom: 0 !important;
margin: 0;
padding: 0 $x_margin;
position: fixed;
right: 0;
bottom: 10vh;
> div {
height: 3vh;
}
}
}
.file_fixed span:last-of-type {
display: none;
}
}
@@ -51,3 +75,21 @@
margin-left: 25vw;
}
}
.fullpage.actus {
@media (min-width: $breakpoint_tablet) {
width: auto;
margin-left: $x_margin;
margin-right: $x_margin;
.actus_list {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: $breakpoint_desktop) {
.actus_list {
grid-template-columns: repeat(3, 1fr);
}
}
}