| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- .calendar_main {
- width: 750px;
- }
- .calendar_header {
- width: 698px;
- margin-top: 32px;
- margin-bottom: 22px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- color: #000;
- font-size: 28px;
- height: 36px;
- }
- .calendar_body {
- display: flex;
- flex-direction: column;
- margin-left: 20px;
- // margin-right: 20px;
- box-sizing: border-box;
- overflow: hidden;
- }
- .calendar_weekly {
- display: flex;
- flex-direction: row;
- align-items: center;
- flex: 1;
- height: 28px;
- margin-bottom: 12px;
- }
- .week_item {
- width: 94px;
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 18px;
- color: #B2B2B2;
- }
- .calendar_main2 {
- display: flex;
- flex-direction: column;
- align-items: center;
- background-color: #f5f5f5;
- width: 698px;
- margin-left: 26px;
- margin-bottom: 26px;
- border-radius: 28px;
- }
- .calendar_main3 {
- display: flex;
- flex-direction: row;
- align-items: center;
- flex-wrap: wrap;
- padding-bottom: 8px;
- }
- .left_calendar_item {
- position: relative;
- height: 60px;
- margin-bottom: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- background-color: #26B7FF1A;
- border-top-left-radius: 30px;
- border-bottom-left-radius: 30px;
- width: 94px;
- }
- .right_calendar_item {
- position: relative;
- height: 60px;
- margin-bottom: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- background-color: #26B7FF1A;
- border-top-right-radius: 30px;
- border-bottom-right-radius: 30px;
- width: 94px;
- }
- .full_calendar_item {
- position: relative;
- height: 60px;
- margin-bottom: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- background-color: #26B7FF1A;
- border-radius: 30px;
- width: 94px;
- }
- .today1 {
- background-color: #000000;
- height: 60px;
- margin-bottom: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- ;
- border-radius: 30px;
- }
- .today2 {
- height: 52px;
- width: 52px;
- background-color: #000;
- border-radius: 26px;
- position: absolute;
- top: 6px;
- left: 23px;
- z-index: 0;
- }
- .full_right_today{
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- width: 77px;
- z-index: 0;
- border-bottom-right-radius: 30px;
- border-top-right-radius: 30px;
- }
- .fullToday {
- height: 60px;
- width: 60px;
- border-radius: 30px;
- position: absolute;
- top: 0px;
- left: 17px;
- z-index: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .today3 {
- height: 52px;
- width: 52px;
- box-sizing: border-box;
- border: solid 2px #000;
- border-radius: 26px;
- }
- .today_content {
- border: solid 2px #000;
- box-sizing: border-box;
- }
- .center_calendar_item {
- position: relative;
- height: 60px;
- margin-bottom: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- background-color: #26B7FF1A;
- width: 94px;
- }
- .calendar_item {
- height: 60px;
- margin-bottom: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- width: 94px;
- }
- .left_day {
- color: #26B7FF;
- font-size: 30px;
- letter-spacing: -3px;
- }
- .right_day {
- color: #26B7FF;
- font-size: 30px;
- letter-spacing: -3px;
- }
- .full_day {
- color: #26B7FF;
- font-size: 30px;
- letter-spacing: -3px;
- }
- .center_day {
- color: #26B7FF;
- font-size: 30px;
- letter-spacing: -3px;
- }
- .normal_day {
- color: #808080;
- font-size: 30px;
- letter-spacing: -3px;
- }
- .streak_days {
- font-size: 96px;
- font-weight: bold;
- line-height: 108px;
- }
|