Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. /*----------------------------------- */
  2. /* Custom Checkboxes
  3. ------------------------------------- */
  4. .checkboxes {
  5. list-style: none;
  6. padding: 0;
  7. }
  8.  
  9. .checkboxes.in-row label { margin-top: 9px;}
  10. .checkboxes.one-in-row label { margin-top: 9px; width: 100%; }
  11.  
  12. .checkboxes li { padding: 4px 0; }
  13. .checkboxes li:last-child { margin-bottom: -8px; }
  14.  
  15. .checkboxes label {
  16. display: inline-block;
  17. cursor: pointer;
  18. position: relative;
  19. padding-left: 28px;
  20. margin-right: 20px;
  21. margin-bottom: 0;
  22. font-size: 15px;
  23. }
  24.  
  25. .checkboxes label span {
  26. color: #909090;
  27. font-size: 15px;
  28. }
  29.  
  30. .checkboxes input[type=checkbox] { display: none; }
  31.  
  32. .checkboxes label:before {
  33. content: "";
  34. display: inline-block;
  35. width: 19px;
  36. height: 19px;
  37. margin-right: 10px;
  38. position: absolute;
  39. left: 0;
  40. top: 3px;
  41. background-color: #fff;
  42. border: 2px solid #d0d0d0;
  43. border-radius: 2px;
  44. -webkit-box-sizing: border-box;
  45. -moz-box-sizing: border-box;
  46. box-sizing: border-box;
  47. transition: border-color 0.3s;
  48. }
  49.  
  50. .checkboxes input[type=checkbox]:checked + label:before {
  51. content: "\f00c";
  52. font-family: "FontAwesome";
  53. font-size: 12px;
  54. color: #fff;
  55. text-align: center;
  56. line-height: 15px;
  57. background-color: #66676b;
  58. border: 2px solid transparent;
  59. transition: border-color 0s;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement