Add ease transition for links (#469)

This commit is contained in:
Luiz F. A. de Prá
2020-10-29 21:37:26 -03:00
committed by GitHub
parent 4e9dba0df5
commit 3181d37946
4 changed files with 7 additions and 4 deletions

View File

@@ -6,13 +6,15 @@
font-size: 1.6em;
a {
display: block;
text-align: center;
width: 3.0rem;
height: 3.0rem;
color: $alt-fg-color;
background-color: $alt-bg-color;
font-size: 2.0rem;
padding: 0.5rem;
border-radius: 0.5rem;
opacity: 50%;
transition: opacity 0.5s, color 0.5s;
transition: all .25s ease-in;
&:hover, &:focus {
color: $link-color;
opacity: 100%;