Created
January 10, 2022 19:22
-
-
Save Cbarua/ff2f4d2d5649d164b6ad054a589d82f6 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
.border-animation { | |
position: relative; | |
border-top: 1px solid transparent; | |
border-bottom: 1px solid transparent; | |
transition: padding .2s, border-color .2s; | |
} | |
.border-animation::before, | |
.border-animation::after { | |
content: ''; | |
position: absolute; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
height: 0; | |
transition: height .2s, border-color 0s; | |
} | |
.border-animation::before { | |
top: 0; | |
border-left: 1px solid transparent; | |
} | |
.border-animation::after { | |
border-right: 1px solid transparent; | |
} | |
.border-animation:hover { | |
border-color: #000; | |
} | |
.border-animation:hover::before, | |
.border-animation:hover::after { | |
height: 100%; | |
transition-delay: .1s; | |
border-color: #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment