first commit
This commit is contained in:
parent
b216a187bd
commit
f73c77f548
119 changed files with 4504 additions and 4829 deletions
31
frontend/app/css/links.css
Normal file
31
frontend/app/css/links.css
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/* Liens minimaux et professionnels (underline animé) */
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
background-image: linear-gradient(var(--color-accent, #ff6b35), var(--color-accent, #ff6b35));
|
||||
background-position: 0 100%;
|
||||
background-size: 0% 2px;
|
||||
background-repeat: no-repeat;
|
||||
transition: background-size 0.25s ease, color 0.2s ease, opacity 0.2s ease;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--color-accent-700, #c74d25);
|
||||
background-size: 100% 2px;
|
||||
}
|
||||
|
||||
a:active {
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
a:focus-visible {
|
||||
outline: 2px solid var(--color-accent, #ff6b35);
|
||||
outline-offset: 2px;
|
||||
border-radius: var(--radius-sm, 6px);
|
||||
}
|
||||
|
||||
/* Variante de lien "bouton texte" */
|
||||
.link-button {
|
||||
color: var(--color-accent, #ff6b35);
|
||||
font-weight: 600;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue