cleaner.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .bg-white
  2. {
  3. background-color: #263238;
  4. }
  5. .bg-transparent{
  6. background-color: transparent;
  7. }
  8. .text-blue{
  9. color: #78cdf6;
  10. }
  11. .bg-blue{
  12. background-color: #78cdf6;
  13. }
  14. .bg-orange{
  15. background-color: #f4ba8c;
  16. }
  17. .text-orange{
  18. color: #f4ba8c;
  19. }
  20. .text-white{
  21. color: white;
  22. }
  23. .no-border{
  24. border: none;
  25. }
  26. .no-shadow{
  27. box-shadow: none;
  28. }
  29. .rounded{
  30. border-radius:10px ;
  31. }
  32. .full-rounded{
  33. border-radius:100px;
  34. }
  35. .rounded-top{
  36. border-top-left-radius:10px ;
  37. border-top-right-radius:10px ;
  38. }
  39. .rounded-bottom{
  40. border-bottom-left-radius:10px ;
  41. border-bottom-right-radius:10px ;
  42. }
  43. .CheckBtn >check{
  44. background-color: transparent;
  45. border-radius: 100%;
  46. padding: 3px;
  47. border: 7px solid ;
  48. min-width: 1px;
  49. min-height: 1px;
  50. }
  51. .CheckBtn :checked{
  52. background-color: rgb(156, 205, 255);
  53. border: 0px solid ;
  54. padding: 15px;
  55. }
  56. .CheckBtn-Orange >check{
  57. border-color: #f4ba8c;
  58. }
  59. .CheckBtn-Purple >check{
  60. border-color: #eabaf0;
  61. }
  62. .CheckBtn-Pink >check{
  63. border-color: #f18fa5;
  64. }
  65. .CheckBtn-Blue >check{
  66. border-color: #75d0f1;
  67. }
  68. .CheckBtn-Green >check{
  69. border-color: #9bffee;
  70. }
  71. .sm-font{
  72. font-size: 8px;
  73. }
  74. .close{
  75. background-color: #fe653b;
  76. }
  77. .minimize{
  78. background-color: #88e1ff;
  79. }
  80. .maximize{
  81. background-color: #eabaf0;
  82. }