Guest User

Untitled

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