-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.wxss
46 lines (45 loc) · 1014 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
/**app.wxss**/
page {
background-color: #F8F8F8;
height: 100%;
font-size: 32rpx;
line-height: 1.6;
}
.page-body {
width: 100%;
min-height: 100%;
display:flex;
flex-direction:column;/*垂直显示,正如一个列一样,row就是水平显示*/
justify-content: center;/* center水平居中 align-items:center;垂直居中*/
font-size: 32rpx;
font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
}
.container {
display: flex;
flex-direction: column;
min-height: 100%;
justify-content: space-between;
font-size: 32rpx;
font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
}
.text-box{
margin-bottom: 10rpx;
margin-top: 10rpx;
padding: 10rpx 0;
display: flex;
min-height: 50rpx;
background-color: #ddf;
justify-content: center;
align-items: center;
text-align: center;
font-size: 30rpx;
color: #353535;
line-height: 2em;
}
.about-img {
position: fixed;
width: 100rpx;
height: 100rpx;
bottom: 30rpx;
right: 30rpx;
}