-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.wxss
61 lines (60 loc) · 1004 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
59
60
61
.container {
height: 100%;
display: flex;
flex-direction: column;
box-sizing: border-box;
line-height: 1.2;
padding: 16rpx;
overflow-x: hidden;
}
.item-pic {
border-radius: 6rpx;
width: 60rpx;
height: 60rpx;
}
.title {
font-size: 28rpx;
}
.username {
font-weight: 700;
font-size: 22rpx;
color: #000;
}
.no-data {
text-align: center;
padding-top: 20rpx;
padding-bottom: 20rpx;
font-size: 28rpx;
border-top: 1px solid #e2e2e2;
}
.item {
padding-bottom: 16rpx;
padding-top: 16rpx;
}
.item:first-child {
border-top: 0;
}
.item .replies-num {
font-size: 26rpx;
font-weight: 700;
color: #fff;
background-color: #aab0c6;
display: inline-block;
padding: 2rpx 14rpx;
border-radius: 6rpx;
}
.content .info text {
font-size: 22rpx;
color: #ccc;
}
.content .info .title {
display: inline-block;
background-color: #f5f5f5;
color: #777;
padding: 4rpx;
border-radius: 6rpx;
}
.content .info .modified {
font-weight: bold;
color: #778087;
}