back species

This commit is contained in:
Julie Blanc 2026-02-16 15:34:30 +01:00
parent 9a6ff0b24e
commit 25cdb3bd0b
13 changed files with 158 additions and 35 deletions

View file

@ -102,5 +102,29 @@ label.btn-action{
left: 2.5ch;
}
}
}
.link-back{
a{
text-decoration: none;
color: var(--color-txt);
font-size: var(--fs-small);
&::before{
content: "";
font-family: var(--font-title);
font-size: 0.9em;
position: relative;
left: -1.5ch;
transition: left .4s ease-in-out;
text-decoration: 1px underline transparent;
}
}
&:hover{
opacity: 0.8;
a::before{
left: -2.5ch;
}
}
}

View file

@ -42,11 +42,26 @@ $slideshow-items: 3;
}
}
.schema-collectifs{
background-color: white;
img{
object-fit: contain;
}
}
figcaption{
width: calc(100% - var(--arrow-space)*2);
font-size: var(--fs-small);
height: calc(var(--unit)*2);
font-size: var(--fs-normal);
font-weight: 500;
padding-top: calc(var(--padding-inner)*0.5);
text-align: left;
width: 100%;
margin-top: calc(var(--spacing)*0.5);
&::before{
content: '';
font-family: var(--font-title);
padding-right: 2ch;
}
}
}