add slider
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s

This commit is contained in:
Julie Blanc 2026-01-27 19:58:53 +01:00
parent 8a4f9d6b64
commit 1ea9f36aa1
9 changed files with 249 additions and 36 deletions

View file

@ -9,7 +9,9 @@
.section--inner{
display: grid;
grid-template-columns: 50% 50%;
--gap: calc(var(--padding-body)*2);
grid-template-columns: repeat(2, calc((100% - var(--gap))*0.5));
grid-gap: var(--gap);
}
@ -24,7 +26,6 @@
.col-right{
width: 100%;
height: 100%;
background-color: yellow;
}
@ -45,16 +46,17 @@
}
#home__investigations{
.container-cards{
max-width: var(--max-w-container);
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
grid-auto-rows: minmax(100px, auto);
grid-gap: calc(var(--padding-body)*1.5);
margin-bottom: 10vh;
.card--article{
.description, .dl{
font-size: var(--fs-small);
}
}
}
#home__description{