-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.wxss
111 lines (91 loc) · 1.36 KB
/
app.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
105
106
107
108
109
110
111
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 20rpx 20px;
box-sizing: border-box;
}
/* reset */
page {
font-size: 32rpx;
line-height: 1.6;
font-family: Avenir, Helvetica, sans-serif;
}
checkbox, radio{
margin-right: 10rpx;
}
button{
margin-top: 20rpx;
margin-bottom: 20rpx;
}
form{
width: 100%;
}
/* lib */
.h1 {
font-weight:800;
font-size: 48rpx;
}
.h3 {
font-weight:bold;
font-size: 30rpx;
}
.sep {
border-bottom:1px solid lightgray;
}
.em {
font-style: italic;
color:#D03232;
}
.code {
font-style: italic;
opacity:0.8;
}
.strong{
font-weight: bold;
}
.tc{
text-align: center;
}
.tl{
text-align: left;
}
.desc {
margin-top: 20rpx;
color: #888888;
font-size: 28rpx;
}
.page-section{
width: 100%;
margin-bottom: 60rpx;
}
.page-section_center{
display: flex;
flex-direction: column;
align-items: center;
}
.page-section:last-child{
margin-bottom: 0;
}
.page-section-gap{
box-sizing: border-box;
padding: 0 30rpx;
}
.page-section-spacing{
box-sizing: border-box;
padding: 0 80rpx;
}
.page-section-title{
font-size: 28rpx;
color: black;
margin-bottom: 10rpx;
padding-left: 30rpx;
padding-right: 30rpx;
}
.page-section-gap .page-section-title{
padding-left: 0;
padding-right: 0;
}