-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.wxss
58 lines (49 loc) · 974 Bytes
/
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
/**app.wxss**/
@import "colorui/main.wxss";
@import "colorui/icon.wxss";
@import "components/item-toast/index.wxss";
page {
min-height: 100vh;
}
.container {
width: 100%;
height: 100%;
min-height: 100vh;
margin: 0 auto;
padding: 0;
background: #fff;
box-sizing: border-box;
line-height: 1.5rem;
font-weight: 400;
font-family: "Roboto", sans-serif, "微软雅黑";
}
.page-body {
width: 100%;
margin: 0 auto;
padding: 0;
}
.page-body-wrapper {
width: 100%;
margin: 0 auto;
padding: 0;
}
.card-shadow {
box-shadow: 0rpx -5rpx 25rpx #eee,
-5rpx 0rpx 25rpx #eee,
5rpx 0rpx 25rpx #eee,
0rpx 5rpx 25rpx #eee;
}
/* 一级标题 */
.title1 {
font-size: 1.3rem;
font-style: bolder;
line-height: 1.5rem;
color: black;
}
/* 二级标题 */
.title2 {
font-size: 1rem;
font-style: bolder;
line-height: 1.2rem;
color: black;
}