Guest User

Untitled

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