-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdateSelect.wxss
More file actions
47 lines (45 loc) · 818 Bytes
/
dateSelect.wxss
File metadata and controls
47 lines (45 loc) · 818 Bytes
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
/* pages/dateSelect/dateSelect.wxss */
page{
font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "\9ED1\4F53", Arial, sans-serif;
color:#333;
font-size: 28rpx;
overflow-x: hidden;
overflow-y: auto;
}
.layout-flex{
display:flex;
}
.layout-flex .row{
flex-direction: row;
}
.layout-flex .column{
flex-direction: column;
}
.align-center{
align-items:center;
justify-content: center;
}
.date-day{
display: flex;
margin:5px;
text-align:center;
justify-content: center;
align-items: center;
}
.date-day.active{
background: #FF9C01;
color:#FFF;
border-radius: 100%;
}
.date-day.unavailable{
color:#aaa;
}
.date-week{
display: flex;
justify-content: center;
align-content: center;
margin:5px;
}
.week{
color:#FF9C01;
}