Guest User

Untitled

a guest
Jun 23rd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. //////pug
  2. a(href="#").button.btn-hvr_right
  3. span.btn_text To Right
  4.  
  5. /////html
  6. <a class="button btn-hvr_right" href="#">
  7. <span class="btn_text">To Right</span>
  8. </a>
  9.  
  10. /////sass
  11.  
  12. $buttonBackgroundColor: #fff
  13. $buttonPseudoBackgroundColor: #000
  14. $buttonWidth: 200px
  15. $buttonHeight: 45px
  16. $buttonColor: #000
  17. $buttonTransition: .25s ease
  18. $buttonTextTransition: .5s ease
  19.  
  20.  
  21. .button
  22. text-transform: uppercase
  23. display: inline-block
  24. text-align: center
  25. line-height: $buttonHeight
  26. width: $buttonWidth
  27. height: $buttonHeight
  28. border: 1px solid black
  29. position: relative
  30. background-color: $buttonBackgroundColor
  31. .btn_text
  32. color: $buttonColor
  33. transition: color $buttonTextTransition
  34. .btn-hvr_right
  35. transition: background-color, border-color $buttonTransition
  36. &::before
  37. position: absolute
  38. content: ''
  39. background-color: #000
  40. width: 0
  41. height: 100%
  42. left: 0
  43. top: 0
  44. transition: width $buttonTransition
  45. &:hover
  46. border-color: #fff
  47. .btn_text
  48. color: white
  49. position: relative
  50. &::before
  51. width: 100%
Add Comment
Please, Sign In to add comment