| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- .container_test {
- width: 100%;
- display: flex;
- flex-direction: row;
- height: calc(100% - 51px);
- }
- .options {
- width: 256px;
- margin-right: 8px;
- height: 100%;
- overflow: auto;
- }
- .calendar {
- width: calc(100% - 264px);
- height: 100%;
- overflow: auto;
- }
- .content_calendar_option {
- height: 60px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- border-bottom: rgb(218,220,224) 1px solid;
- }
- .calendar_config {
- display: flex;
- align-items: center;
- }
-
- .container_calendar {
- display: flex;
- flex-direction: column;
- border-left: rgb(218,220,224) 1px solid;
- height: 100%;
- }
- .content_day {
- display: flex;
- flex-direction: row;
- width: 100%;
- }
- .content_week {
- display: flex;
- flex-direction: row;
- width: 100%;
- border-bottom: rgb(218,220,224) 1px solid;
- }
- .item_week {
- width: calc(100% / 7);
- border-right: rgb(218,220,224) 1px solid;
- text-align: center;
- font-size: 11px;
- text-transform: uppercase;
- color: #70757A;
- }
- .item_date {
- display: flex;
- flex-direction: column;
- width: calc(100% / 7);
- border-right: rgb(218,220,224) 1px solid;
- cursor: pointer;
- }
- .item_day{
- width: 100%;
- text-align: center;
- padding: 5px 0;
- font-size: 12px;
- color: rgb(60,64,67);
- }
- .item_day-current_date {
- width: 100%;
- text-align: center;
- padding: 5px 0;
- font-size: 12px;
- background-color: rgb(26,115,232);;
- color: #FFFFFF;
- }
- .date_selected {
- color: rgb(60,64,67);
- font-size: 22px;
- font-weight: 400;
- letter-spacing: 0;
- line-height: 28px;
- white-space: nowrap;
- margin-left: 8px;
- }
- .container_time {
- width: 100%;
- display: flex;
- height: calc(100% - 78px);
- overflow: auto;
- }
- .config_date {
- color: rgb(60,64,67);
- font-size: 16px;
- font-weight: 400;
- letter-spacing: 0;
- line-height: 28px;
- white-space: nowrap;
- margin-left: 8px;
- padding: 8px 0;
- }
- .content_times {
- width: 50px;
- text-align: end;
- }
- .item_time {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- height: 48px;
- border-bottom: rgb(218,220,224) 1px solid;
- font-size: 10px;
- color: #70757A;
- }
- .content_data_time {
- width: calc(100% - 50px);
- }
- .number_day {
- font-size: 11px;
- text-transform: uppercase;
- color: #70757A;
- letter-spacing: .8px;
- line-height: 32px;
- text-align: center;
- }
- .number_day-current_date {
- font-size: 11px;
- text-transform: uppercase;
- color: rgb(26,115,232);
- letter-spacing: .8px;
- line-height: 32px;
- text-align: center;
- }
- .number_date {
- font-size: 26px;
- letter-spacing: -2.6px;
- line-height: 46px;
- color: rgb(60,64,67);
- text-align: center;
- }
- .number_date-current_date {
- font-size: 26px;
- letter-spacing: -2.6px;
- line-height: 46px;
- color: #FFFFFF;
- font-weight: 500;
- text-align: center;
- display: flex;
- justify-content: center;
- }
- .number_date-current_date div {
- background-color: rgb(26,115,232);
- width: 45px;
- border-radius: 50px;
- }
- .item_date_week {
- width: 50px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-left: 50px;
- }
- .content_week_data {
- display: flex;
- flex-direction: row;
- width: calc(100% - 50px);
- margin-left: 50px;
- }
- .item_week_data {
- width: calc(100% / 7);
- }
|