Skip to content

Instantly share code, notes, and snippets.

@alireza-saberi
Created August 18, 2017 02:54
Show Gist options
  • Save alireza-saberi/91c5db5ef556bcfd60f9ad198a332b7a to your computer and use it in GitHub Desktop.
Save alireza-saberi/91c5db5ef556bcfd60f9ad198a332b7a to your computer and use it in GitHub Desktop.
a line from left to right grow under a navbar
&:after {
display:block;
content: '';
border-bottom: solid 3px #ffcd00;
transform: scaleX(0);
transition: transform 250ms ease-in-out;
transform-origin:0 50%;
box-sizing: border-box;
}
&:hover:after, &:hover:focus{
transform: scaleX(1);
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment