Caroussel

This commit is contained in:
Pascal Engélibert
2023-05-18 18:35:28 +02:00
parent d18ea59651
commit e15fb0045e
35 changed files with 226 additions and 8 deletions

View File

@ -1,5 +1,6 @@
@import "defs";
@import "carousel";
@import "clients";
@import "footer";
@import "header";

33
sass/css/carousel.scss Normal file
View File

@ -0,0 +1,33 @@
.carousel {
width: 100%;
display: flex;
gap: 16px;
align-content: center;
align-items: center;
justify-content: space-evenly;
}
// Zola generates noisy empty paragraphs
.carousel p {
display: none;
}
.carousel-item {
display: inline-block;
}
.carousel-hidden {
display: none;
}
// Carousel: prestas worked for...
.carousel-prestaworkedfor {
min-height: 128px;
}
.prestaworkedfor {
max-width: 128px;
max-height: 128px;
margin: auto;
}

View File

@ -12,8 +12,9 @@
}
.square_box {
width: 256px;
height: 256px;
width: 200px;
min-height: 200px;
padding: 8px;
background: linear-gradient(-0.125turn, $blue, $violet);
}