Created
July 16, 2019 22:12
-
-
Save celticwebdesign/7bf15095ca7dfcc0d08b1d52006d35e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a { | |
color: $color__white; | |
text-transform: uppercase; | |
font-size: 1.2rem; | |
height: 24px; | |
margin: 6px 6px 6px; | |
display: block; | |
padding: 0px 4px; | |
line-height: 26px; | |
// https://codepen.io/lhorak/pen/bEavyg | |
// Text underline hover effect | |
text-decoration: none; | |
transition: all 0.3s ease-in; | |
&:hover { | |
transition: all 0.3s ease-out; | |
box-shadow: 0 0 0 0 $color__white inset, | |
0 -1px 0 0 $color__white inset; | |
} | |
// Text underline hover effect | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment