mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 16:28:28 -04:00
15 lines
515 B
CSS
15 lines
515 B
CSS
.link {
|
|
color: var(--link);
|
|
background-image: linear-gradient(var(--link-underline), var(--link-underline));
|
|
background-position: 0% 100%;
|
|
background-repeat: no-repeat;
|
|
background-size: 0% var(--link-underline-size);
|
|
padding-bottom: var(--link-underline-size);
|
|
/* background-size is for hover animation, color & border are for theme fading: */
|
|
transition: background-size 0.25s ease-in-out, color 0.25s ease, border 0.25s ease;
|
|
}
|
|
|
|
.link:hover {
|
|
background-size: 100% var(--link-underline-size);
|
|
}
|