test.component.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. .container_test {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: row;
  5. height: calc(100% - 51px);
  6. }
  7. .options {
  8. width: 256px;
  9. margin-right: 8px;
  10. height: 100%;
  11. overflow: auto;
  12. }
  13. .calendar {
  14. width: calc(100% - 264px);
  15. height: 100%;
  16. overflow: auto;
  17. }
  18. .content_calendar_option {
  19. height: 60px;
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. justify-content: space-between;
  24. border-bottom: rgb(218,220,224) 1px solid;
  25. }
  26. .calendar_config {
  27. display: flex;
  28. align-items: center;
  29. }
  30. .container_calendar {
  31. display: flex;
  32. flex-direction: column;
  33. border-left: rgb(218,220,224) 1px solid;
  34. height: 100%;
  35. }
  36. .content_day {
  37. display: flex;
  38. flex-direction: row;
  39. width: 100%;
  40. }
  41. .content_week {
  42. display: flex;
  43. flex-direction: row;
  44. width: 100%;
  45. border-bottom: rgb(218,220,224) 1px solid;
  46. }
  47. .item_week {
  48. width: calc(100% / 7);
  49. border-right: rgb(218,220,224) 1px solid;
  50. text-align: center;
  51. font-size: 11px;
  52. text-transform: uppercase;
  53. color: #70757A;
  54. }
  55. .item_date {
  56. display: flex;
  57. flex-direction: column;
  58. width: calc(100% / 7);
  59. border-right: rgb(218,220,224) 1px solid;
  60. cursor: pointer;
  61. }
  62. .item_day{
  63. width: 100%;
  64. text-align: center;
  65. padding: 5px 0;
  66. font-size: 12px;
  67. color: rgb(60,64,67);
  68. }
  69. .item_day-current_date {
  70. width: 100%;
  71. text-align: center;
  72. padding: 5px 0;
  73. font-size: 12px;
  74. background-color: rgb(26,115,232);;
  75. color: #FFFFFF;
  76. }
  77. .date_selected {
  78. color: rgb(60,64,67);
  79. font-size: 22px;
  80. font-weight: 400;
  81. letter-spacing: 0;
  82. line-height: 28px;
  83. white-space: nowrap;
  84. margin-left: 8px;
  85. }
  86. .container_time {
  87. width: 100%;
  88. display: flex;
  89. height: calc(100% - 78px);
  90. overflow: auto;
  91. }
  92. .config_date {
  93. color: rgb(60,64,67);
  94. font-size: 16px;
  95. font-weight: 400;
  96. letter-spacing: 0;
  97. line-height: 28px;
  98. white-space: nowrap;
  99. margin-left: 8px;
  100. padding: 8px 0;
  101. }
  102. .content_times {
  103. width: 50px;
  104. text-align: end;
  105. }
  106. .item_time {
  107. display: flex;
  108. align-items: center;
  109. justify-content: flex-end;
  110. height: 48px;
  111. border-bottom: rgb(218,220,224) 1px solid;
  112. font-size: 10px;
  113. color: #70757A;
  114. }
  115. .content_data_time {
  116. width: calc(100% - 50px);
  117. }
  118. .number_day {
  119. font-size: 11px;
  120. text-transform: uppercase;
  121. color: #70757A;
  122. letter-spacing: .8px;
  123. line-height: 32px;
  124. text-align: center;
  125. }
  126. .number_day-current_date {
  127. font-size: 11px;
  128. text-transform: uppercase;
  129. color: rgb(26,115,232);
  130. letter-spacing: .8px;
  131. line-height: 32px;
  132. text-align: center;
  133. }
  134. .number_date {
  135. font-size: 26px;
  136. letter-spacing: -2.6px;
  137. line-height: 46px;
  138. color: rgb(60,64,67);
  139. text-align: center;
  140. }
  141. .number_date-current_date {
  142. font-size: 26px;
  143. letter-spacing: -2.6px;
  144. line-height: 46px;
  145. color: #FFFFFF;
  146. font-weight: 500;
  147. text-align: center;
  148. display: flex;
  149. justify-content: center;
  150. }
  151. .number_date-current_date div {
  152. background-color: rgb(26,115,232);
  153. width: 45px;
  154. border-radius: 50px;
  155. }
  156. .item_date_week {
  157. width: 50px;
  158. display: flex;
  159. flex-direction: column;
  160. align-items: center;
  161. justify-content: center;
  162. margin-left: 50px;
  163. }
  164. .content_week_data {
  165. display: flex;
  166. flex-direction: row;
  167. width: calc(100% - 50px);
  168. margin-left: 50px;
  169. }
  170. .item_week_data {
  171. width: calc(100% / 7);
  172. }