12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .date-day{
- display: flex;
- padding:5px;
- text-align:center;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .date-day.bgitem{
- background-color: #d8ecf9;
- }
- .date-day.active{
- background: #099FDE;
- color:#FFF;
-
- }
- .date-day.unavailable{
- color:#aaa;
- }
- .date-week{
- display: flex;
- justify-content: center;
- align-content: center;
- margin:5px;
- }
- .week{
- color:#099FDE;
- }
- .row{
- display: flex;
- flex-direction: row;
- }
- .item-days{
- display: flex;
- flex-direction:column;
- justify-content: center;
- align-items: center;
- font-size: 35rpx;
- }
- .bgwhite{
- background-color: #fff;
- }
|