reservation.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .container2 {
  2. display: flex;
  3. justify-content: space-between;
  4. width: 100%;
  5. }
  6. .box {
  7. flex: 1;
  8. margin: 0 5px;
  9. text-align: center;
  10. padding: 10px;
  11. background-color: lightgrey;
  12. }
  13. .displayNone {
  14. display: none !important;
  15. }
  16. .displayBlock {
  17. display: block;
  18. }
  19. #SwimmingPoolTitle,
  20. #PoolTitle,
  21. #PoloTitle {
  22. clear: both;
  23. display: flex;
  24. flex-direction: column;
  25. cursor: pointer;
  26. }
  27. .LineGreen {
  28. width: 30px;
  29. height: 30px;
  30. background-color: lightgreen;
  31. border: 2px solid white;
  32. cursor: pointer;
  33. /*padding: 5px;*/
  34. }
  35. .LineYellow {
  36. width: 30px;
  37. background-color: #f5e6ab;
  38. padding: 5px;
  39. }
  40. .LineRed {
  41. width: 30px;
  42. height: 30px;
  43. background-color: #e65054;
  44. border: 2px solid white;
  45. cursor: pointer;
  46. /*padding: 5px;*/
  47. }
  48. #VerticalContainer {
  49. display: flex;
  50. justify-content: center;
  51. align-items: center;
  52. cursor: pointer;
  53. }
  54. .PoolLine {
  55. margin-right: 2px;
  56. margin-bottom: 2px;
  57. }
  58. .PoloLine {
  59. margin-right: 2px;
  60. margin-bottom: 2px;
  61. }
  62. .SwimmingPoolLine {
  63. margin-right: 2px;
  64. margin-bottom: 2px;
  65. }
  66. td.in-range:not(.end-date) {
  67. background-color: #c8e4f1 !important;
  68. }
  69. .hide {
  70. display: none;
  71. }
  72. .timeSelectBox {
  73. display: inline-block;
  74. width: 150px;
  75. margin: 0 10px 0 0;
  76. vertical-align: top;
  77. border: 1px silver solid;
  78. padding: 5px 10px;
  79. }
  80. input#date-range {
  81. padding: 0 10px;
  82. }
  83. .time_slider {
  84. display: none !important;
  85. height: 0px !important;
  86. }
  87. .butSetDefault {
  88. text-decoration: none;
  89. text-transform: uppercase;
  90. font-weight: bold;
  91. margin: 0em 1em;
  92. padding: 0.6em 0.7em;
  93. display: inline-block;
  94. text-align: center;
  95. cursor: pointer;
  96. color: white;
  97. background-color: red;
  98. border: 1px solid transparent;
  99. }
  100. /* hidden checkbox */
  101. .hidden-checkbox {
  102. display: none;
  103. }
  104. .custom-checkbox-label {
  105. display: inline-block;
  106. width: 30px;
  107. height: 30px;
  108. background-color: #e65054; /* Kikapcsolt állapot (piros) */
  109. border: 2px solid white;
  110. cursor: pointer;
  111. transition: background-color 0.3s ease;
  112. }
  113. .hidden-checkbox:checked + .custom-checkbox-label {
  114. background-color: #4caf50; /* Bekapcsolt állapot (zöld) */
  115. }