Guest User

Untitled

a guest
Dec 10th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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. cursor: pointer
  18. &::after
  19. transition: background-color .2s ease
  20. position: absolute
  21. content: ''
  22. height: 4px
  23. bottom: 0
  24. width: 100%
  25. background-color: darken($accent, 50%)
  26. opacity: .18
  27. border-bottom-left-radius: 2px
  28. border-bottom-right-radius: 2px
  29. left: 0
  30. &:focus, &:hover
  31. text-decoration: none
  32. color: #fff
  33. &:hover
  34. background-color: lighten($accent, 5%)
  35. &::after
  36. opacity: .22
  37. &:active
  38. background-color: darken($accent, 5%)
  39. &::after
  40. opacity: .32
Add Comment
Please, Sign In to add comment