-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.wxss
72 lines (62 loc) · 1.04 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
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 20rpx 0;
box-sizing: border-box;
}
.topic-item {
padding:30rpx;
border-bottom: 1px solid #eee;
}
.topic-item {
display: flex;
flex-direction: row;
}
.member-avatar {
width: 128rpx;
height: 128rpx;
margin-right: 20rpx;
border-radius: 100%;
}
.topic-info {
flex:1;
font-size: 24rpx;
}
.topic-inner {
display: flex;
align-items: center;
color:#777;
}
.topic-title {
height:120rpx;
line-height: 1.4;
box-sizing: border-box;
padding-top: 5rpx;
overflow:hidden;
}
.topic-left {
flex:1;
}
.node-name {
display: inline-block;
margin-right: 20rpx;
padding:5rpx 10rpx;
border-radius: 5rpx;
background-color: #eee;
}
.reply-num {
display: inline-block;
margin-left: 50rpx;
padding:10rpx;
height:22rpx;
background-color: #ddd;
border-radius: 5rpx;
color:#777;
}
.member-nickname {
color: #aaa;
}