Skip to content

Instantly share code, notes, and snippets.

@chickenfoot88
Forked from agragregra/button.sass
Created March 26, 2018 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chickenfoot88/f81d3c1b64a502d86a00b3edd89c3ca9 to your computer and use it in GitHub Desktop.
Save chickenfoot88/f81d3c1b64a502d86a00b3edd89c3ca9 to your computer and use it in GitHub Desktop.
Button Sass Styles (Universal Starter)
.button
display: inline-block
border: none
color: #fff
text-decoration: none
background-color: $accent
padding: 15px 45px
font-size: 13px
text-transform: uppercase
font-weight: 600
letter-spacing: 3px
border-radius: 2px
text-align: center
position: relative
outline: none
transition: background-color .1s ease
cursor: pointer
&::after
transition: background-color .2s ease
position: absolute
content: ''
height: 4px
bottom: 0
width: 100%
background-color: darken($accent, 50%)
opacity: .18
border-bottom-left-radius: 2px
border-bottom-right-radius: 2px
left: 0
&:focus, &:hover
text-decoration: none
color: #fff
&:hover
background-color: lighten($accent, 5%)
&::after
opacity: .22
&:active
background-color: darken($accent, 5%)
&::after
opacity: .32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment