| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- .calendar_main{
- width: 750px;
- }
- .calendar_header{
- width: 750px;
- height: 56px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #808080;
- font-size: 34px;
- }
- .calendar_body{
- margin-top: 38px;
- display: flex;
- flex-direction: column;
- }
- .calendar_weekly{
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .week_item{
- flex:1;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 26px;
- color:#B2B2B2;
- }
- .calendar_main{
- display: flex;
- flex-direction: row;
- align-items: center;
- flex-wrap: wrap;
- width: 750px;
- }
- .left_calendar_item{
- height: 74px;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- background-color: #26B7FF1A;
- border-top-left-radius: 37px;
- border-bottom-left-radius: 37px;
- }
- .right_calendar_item{
- height: 74px;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- background-color: #26B7FF1A;
- border-top-right-radius: 37px;
- border-bottom-right-radius: 37px;
- }
- .full_calendar_item{
- height: 74px;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- background-color: #26B7FF1A;
- border-radius: 37px;
- }
- .center_calendar_item{
- height: 74px;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- background-color: #26B7FF1A;
- }
- .calendar_item{
- height: 74px;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
-
- }
- .left_day{
- color:#26B7FF;
- font-size: 34px;
- }
- .right_day{
- color:#26B7FF;
- font-size: 34px;
- }
- .full_day{
- color:#26B7FF;
- font-size: 34px;
- }
- .center_day{
- color:#26B7FF;
- font-size: 34px;
- }
- .normal_day{
- color:#808080;
- font-size: 34px;
- }
|