Skip to content

Instantly share code, notes, and snippets.

@alexvas123
Created September 3, 2016 12:23
Show Gist options
  • Save alexvas123/4720c14cd3c391bff4d25438f6a6f0ed to your computer and use it in GitHub Desktop.
Save alexvas123/4720c14cd3c391bff4d25438f6a6f0ed to your computer and use it in GitHub Desktop.
Button
.link-button
text-align: center
a
background-color: $alert-color
border: .2rem solid $alert-color
color: #fff
display: inline-block
font-family: OpenSansBold, $helvetica
font-size: 1.5rem
font-weight: normal
letter-spacing: .1rem
margin: 2rem 0
overflow: hidden
padding: .7rem
position: relative
text-decoration: none
text-transform: uppercase
transition: all .5s
z-index: 1
&::after
background: $shadow-color
content: ""
display: block
position: absolute
z-index: -1
top: 0
bottom: 0
left: -100%
right: 100%
transition: all .5s
&:hover
border: .2rem solid $accent-color
color: $accent-color
text-decoration: none
&::after
left: 0
right: 0
top: 0
bottom: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment