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;
}
}
}