-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathapp.wxss
124 lines (110 loc) · 1.72 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
112
113
114
115
116
117
118
119
120
121
122
123
124
@import 'util/style/iconfont.wxss';
/*
* 色彩定义
*/
text {
color: #fff;
font-family: Arial, Helvetica, sans-serif;
}
page {
background-color: #373739;
}
.mainBlue {
background-color: #3e649f;
}
.lightBlue {
background-color: #0a5bd0;
}
.darkBlue {
background-color: #143a76;
}
.mainRed {
background-color: #ac5155;
}
.mainYellow {
background-color: #e79841;
}
.mainGreen {
background-color: #7aca6d;
}
.mainWhite{
background-color: #fff;
}
.mainWhite text{
color:#000;
}
/*
* 公共样式
*/
/* 公共 FlexBox 主轴纵向左起排列 */
.flexBox {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-start;
}
/* 全局卡片 */
.card {
display: flex;
flex-direction: column;
justify-content: flex-start;
border-radius: 10rpx;
padding: 20rpx;
margin: 10rpx 20rpx;
}
.cardInfo {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.cardDesc{
font-size: 30rpx;
opacity: 0.6;
}
.cardContent{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
}
.cardCode{
font-size: 100rpx;
}
/* 全局选项 */
.optionCard{
display: flex;
flex-direction: row;
justify-content: space-between;
border-radius: 10rpx;
padding: 20rpx;
margin: 10rpx 20rpx;
}
.optionInfo{
text-align: right;
}
.optionDesc{
font-size: 35rpx;
opacity: 0.5;
}
.optionContent{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
padding-bottom: 20rpx;
}
.optionName{
font-size: 70rpx;
text-align: right;
}
/* 工具类 */
.copyright{
text-align: center;
font-size: 30rpx;
color: #fff;
opacity: 0.8;
margin: 30rpx;
}
progress{
margin-bottom: 10rpx;
}