Advertisement
Guest User

Untitled

a guest
Mar 1st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. .button
  2. display: inline-block
  3. border: none
  4. color: #fff
  5. text-decoration: none
  6. background-color: $accent
  7. padding: 15px 45px
  8. font-size: 13px
  9. text-transform: uppercase
  10. font-weight: 600
  11. letter-spacing: 3px
  12. border-radius: 2px
  13. text-align: center
  14. position: relative
  15. outline: none
  16. transition: background-color .1s ease
  17. &::after
  18. transition: background-color .2s ease
  19. position: absolute
  20. content: ''
  21. height: 4px
  22. bottom: 0
  23. width: 100%
  24. background-color: darken($accent, 50%)
  25. opacity: .18
  26. border-bottom-left-radius: 2px
  27. border-bottom-right-radius: 2px
  28. left: 0
  29. &:focus, &:hover
  30. text-decoration: none
  31. color: #fff
  32. &:hover
  33. background-color: lighten($accent, 5%)
  34. &::after
  35. opacity: .22
  36. &:active
  37. background-color: darken($accent, 5%)
  38. &::after
  39. opacity: .32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement