-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.wxss
103 lines (80 loc) · 1.62 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
@import './miniprogram_npm/weui-miniprogram/weui-wxss/dist/style/weui.wxss';
/*
https://maketintsandshades.com/
*/
/**app.wxss**/
page {
--primary-color: #ffe6b5; /* 主题色 */
--secondary-color: #b6855d; /* 辅助颜色 */
--tertiary-color: #fff2d9; /* 次要颜色 */
--tentiary-ligter: #fff5e1;
--card-background: #fff6e4; /* 卡片背景颜色 */
font-family: sans-serif;
--fontsize-h1: 65rpx;
--fontsize-h2: 55rpx;
--fontsize-h3: 45rpx;
--fontsize-h4: 40rpx;
--fontsize-h5: 35rpx;
--fontsize-h6: 32rpx;
--fontsize-text: 30rpx;
--fontsize-text-md: 27rpx;
--fontsize-text-sm: 25rpx;
--fontsize-text-smsm: 23rpx;
--fontweight-bold: 600;
--fontweight-normal: 500;
--fontweight-light: 400;
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.mt-min {
margin-top: 10rpx !important;
}
.mt-med {
margin-top: 20rpx !important;
}
.mt-max {
margin-top: 30rpx !important;
}
.mb-min {
margin-bottom: 10rpx !important;
}
.mb-med {
margin-bottom: 20rpx !important;
}
.mb-max {
margin-bottom: 30rpx !important;
}
.mr-min {
margin-right: 10rpx !important;
}
.mr-med {
margin-right: 20rpx !important;
}
.mr-max {
margin-right: 30rpx !important;
}
.ml-min {
margin-left: 10rpx !important;
}
.ml-med {
margin-left: 20rpx !important;
}
.ml-max {
margin-left: 30rpx !important;
}
.bdr-min {
border-radius: 8rpx !important;
}
.bdr-med {
border-radius: 16rpx !important;
}
.bdr-max {
border-radius: 24rpx !important;
}