Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. label
  2. position: relative
  3. padding-left: 50px
  4. color: $accent
  5. cursor: pointer
  6. margin-bottom: 0
  7. margin-right: 0
  8.  
  9. &::before,
  10. &::after
  11. content: ''
  12. position: absolute
  13. left: 0
  14.  
  15. &::before
  16. width: 15px
  17. height: 15px
  18. border-radius: 3px
  19. border: 1px solid $accent
  20.  
  21. &::after
  22. width: 9px
  23. height: 9px
  24. border-radius: 3px
  25. border: 1px solid $accent
  26. background: $accent
  27. left: 3px
  28. top: 3px
  29. transition: all .6s
  30.  
  31. input[type="checkbox"]
  32. display: none
  33.  
  34. input[type="checkbox"]:checked + label::after
  35. transform: scale(1)
  36.  
  37. input[type="checkbox"] + label::after
  38. transform: scale(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement