-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalendar.wxss
104 lines (104 loc) · 1.56 KB
/
calendar.wxss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
page {
height: 100%;
}
.container {
padding-top: 60rpx;
}
.calendarMain {
width: 100%;
height: 100%;
background: #FFF;
position: fixed;
z-index: 1111;
}
.calendarTR {
width: 100%;
height: 68rpx;
background: #FCA9E1;
position: fixed;
top: 0;
left: 0;
z-index: 111;
}
.calendarTR_list {
width: 602rpx;
height: 68rpx;
margin: 0 auto;
}
.calendarTR_list view {
width: 86rpx;
height: 68rpx;
line-height: 68rpx;
display: inline-block;
text-align: center;
font-size: 24rpx;
color: #FFF;
letter-spacing: 2px;
}
.calendarTR_week {
color: #448BFF !important;
}
.monthList {
width: 100%;
height: 100%;
}
.monthFOR {
width: 602rpx;
margin: 40rpx auto;
}
.monthTop {
width: 100%;
height: 142rpx;
}
.month {
font-weight: 600;
font-size: 48rpx;
color: #3E4649;
letter-spacing: -2rpx;
line-height: 64rpx;
text-align: center;
margin-bottom: 13rpx;
}
.year {
font-size: 24rpx;
color: #9C9C9C;
line-height: 30rpx;
text-align: center;
}
.dayBlock {
width: 86rpx;
height: 86rpx;
text-align: center;
float: left;
font-size: 30rpx;
line-height: 86rpx;
color: #04040F;
}
.invalid {
color: #B1B1B1 !important;
}
.clear {
clear: both;
}
.weekend {
color: #448BFF;
}
.isCheck {
background: #448BFF;
border-radius: 50%;
color: #FFF;
}
.showBtn {
position: fixed;
right: 60rpx;
bottom: 60rpx;
color: #FFF;
font-size: 24rpx;
height: 90rpx;
width: 197rpx;
line-height: 90rpx;
text-align: center;
border-radius: 50px;
background: #74B4F7;
box-shadow: 3px 4px 20px 0 rgba(137,193,253,0.80);
}