all.css 1006 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .checkbox-styled {
  2. position: relative;
  3. display: inline-block;
  4. height: 18px;
  5. width: 18px;
  6. margin: 0 5px 4px 0;
  7. background-color: #fff;
  8. border: 1px solid #DADADA;
  9. border-radius: 2px;
  10. -webkit-transition: 0.15s ease-in-out;
  11. transition: 0.15s ease-in-out;
  12. cursor: pointer;
  13. vertical-align: middle;
  14. }
  15. .checkbox-styled:before {
  16. position: absolute;
  17. top: 50%;
  18. left: 50%;
  19. display: block;
  20. content: "\f00c";
  21. height: 0;
  22. width: 0;
  23. opacity: 0;
  24. color: #25c268;
  25. font-size: 0;
  26. font-family: 'FontAwesome';
  27. line-height: 16px;
  28. text-align: center;
  29. line-height: 1px;
  30. -webkit-transition: 0.15s ease-in-out;
  31. transition: 0.15s ease-in-out;
  32. }
  33. .checkbox-styled.checked:before{
  34. top: 0;
  35. left: 0;
  36. height: 16px;
  37. width: 16px;
  38. opacity: 1;
  39. font-size: 14px;
  40. line-height: 16px;
  41. }
  42. .checkbox-styled:not(.disabled):hover {
  43. border: 1px solid #25c268;
  44. }
  45. .checkbox-styled.disabled {
  46. border: 1px solid #EEEEEE;
  47. }
  48. .checkbox-styled.disabled:before {
  49. color: #BED1C6;
  50. }