Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. .checkbox
  2. display: inline-block
  3. height: 16px
  4. width: 16px
  5. min-width: 16px
  6. padding: 0 !important
  7. border: 1px solid #dcdcdc
  8. margin: 0 10px 0 0
  9. border-radius: 3px
  10.  
  11. background: #ffffff
  12. color: #239e58
  13. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
  14.  
  15. line-height: 0
  16. text-align: center
  17. vertical-align: middle
  18.  
  19. clear: none
  20. cursor: pointer
  21. outline: 0
  22. -webkit-appearance: none
  23. -moz-appearance: none
  24. transition: .05s border-color ease-in-out, .05s background-color ease-in-out
  25.  
  26. &:checked
  27. background-color: #239e58
  28. border-color: #239e58
  29.  
  30. &:checked:before
  31. content: "\f00c"
  32. margin: 0 0 0 -1px
  33. color: white
  34. float: left
  35. display: inline-block
  36. vertical-align: middle
  37. width: 16px
  38. font: 400 13px/1 dashicons
  39. font-family: FontAwesome
  40. speak: none
  41. -webkit-font-smoothing: antialiased
  42. -moz-osx-font-smoothing: grayscale
  43.  
  44. &:disabled
  45. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0)
  46. border-color: #d8d8d6
  47. background-color: #d8d8d6
  48. cursor: default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement