btnSwtich.styl 841B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .btnswitch
  2. display flex
  3. align-items center
  4. &__text
  5. margin-left 10px
  6. .switch
  7. position relative
  8. display inline-block
  9. width 60px
  10. height 34px
  11. .switch input
  12. display none
  13. .slider
  14. position absolute
  15. cursor pointer
  16. top 0
  17. left 0
  18. right 0
  19. bottom 0
  20. background-color #ccc
  21. -webkit-transition .4s
  22. transition .4s
  23. .slider:before
  24. position absolute
  25. content ""
  26. height 26px
  27. width 26px
  28. left 4px
  29. bottom 4px
  30. background-color white
  31. -webkit-transition .4s
  32. transition .4s
  33. input:checked + .slider
  34. background-color blue
  35. input:focus + .slider
  36. box-shadow 0 0 1px thirdColor
  37. input:checked + .slider:before
  38. -webkit-transform translateX(26px)
  39. -ms-transform translateX(26px)
  40. transform translateX(26px)
  41. /* Rounded sliders */
  42. .slider.round
  43. border-radius 34px
  44. .slider.round:before
  45. border-radius: 50%