-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.wxss
100 lines (88 loc) · 1.35 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
@import '/miniprogram_npm/@vant/weapp/common/index.wxss';
@import './icon.wxss';
@import './theme.wxss';
page {
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
--primary: #33B4BC;
--second: #00CC66;
--third: #D21DAA;
background-color: #f5f6f7;
}
.container {
margin: 20px;
}
.container-v {
margin: 20px 0;
}
.container-h {
margin: 0 20px;
}
.deliver {
margin-bottom: 10px;
}
.font {
font-size: 14px;
color: rgba(80, 80, 80, 1);
line-height: 200%;
}
.flex {
display: flex;
}
.flex-1 {
flex: 1;
}
.flex-2 {
flex: 2;
}
.flex-3 {
flex: 3;
}
.flex-col {
display: flex;
flex-direction: column;
}
.flex-wrap {
flex-wrap: wrap;
}
.row {
flex-direction: row;
}
.column {
flex-direction: column;
}
.align-items-center {
align-items: center;
}
.align-items-end {
align-items: end;
}
.justify-center {
justify-content: center;
}
.justify-end {
justify-content: flex-end;
}
.justify-between {
justify-content: space-between;
}
.btn {
border-radius: 5px;
margin: 10px;
padding: 0 15px;
font-size: 14px;
}
.small {
font-size: .8rem;
}
.full-height {
height: 100%;
}
.full-width {
width: 100%;
}
.wrapper {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}