feat: Underline links for accessebility, add active style for clickable elements, use current year in footer

This commit is contained in:
daudix
2024-01-16 01:03:15 +03:00
parent 2c5fd27b90
commit 8c413a6101
8 changed files with 48 additions and 31 deletions

View File

@ -13,6 +13,7 @@
display: inline-block;
font-size: 0.9rem;
padding: 0.4rem 1rem;
text-decoration: none;
transition: var(--transition);
&:hover {
@ -20,6 +21,10 @@
text-decoration: none;
}
&:active {
transform: scale(var(--active));
}
&.colored {
color: var(--primary-color);
background-color: transparent;