bientot pret

This commit is contained in:
GZod01 2024-05-12 11:20:23 +02:00
parent b71cbb37ef
commit d860e3d987
45 changed files with 1987 additions and 249 deletions

24
oldscss/helpers/link.scss Normal file
View file

@ -0,0 +1,24 @@
a:focus, a:active {
outline:0 !important;
}
.link {
color: inherit;
transition: opacity 0.2s;
text-decoration: none;
}
.link:hover {
text-decoration: none;
opacity: 0.8;
transition: opacity 0.2s;
cursor: pointer;
}
.link.link-primary {
color: $primary-color;
}
.link.no-opacity:hover {
opacity: 1 !important;
}