Skip to content

Instantly share code, notes, and snippets.

@RuslanAsadov
Last active December 2, 2018 11:38
Show Gist options
  • Save RuslanAsadov/75c724b173a9cdced9b42f2abd5173ac to your computer and use it in GitHub Desktop.
Save RuslanAsadov/75c724b173a9cdced9b42f2abd5173ac to your computer and use it in GitHub Desktop.
.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
&:focus
box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.13)
&: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