add hover effect to links; close #72

This commit is contained in:
Pavlo Rudy 2023-07-12 21:54:24 +03:00 committed by GitHub
parent be358d93f6
commit 57bad91360
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,6 +67,16 @@ a:focus { box-shadow: 0 0 0 3px {{ site.colors.purple }}cc; }
width: 1px;
}
a:hover {
color: #fff;
margin: 0 -.25rem;
padding: 0 .25rem;
box-shadow: inset 500px 0 0 0 #1A5FB4;
transition: color 1s ease-in-out, box-shadow 1s ease-in-out;
}
/* ----- base elements ----- */
img {