-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.wxss
78 lines (67 loc) · 1.25 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
/**app.wxss**/
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
page {
background-color: white;
/*黑白化样式*/
/* -webkit-filter: grayscale(100%);
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); */
}
.item-hover {
background-color: rgba(254, 98, 67, 0.05);
}
.input-active {
border-bottom: 1rpx #fe6243 solid;
}
.article {
padding: 20rpx;
height: 180rpx;
box-sizing: border-box;
position: relative;
border-bottom: 1rpx #cdcdcd solid;
}
.article .title {
font-size: 32rpx;
color: #2c2c2c;
word-wrap: break-word;
white-space: normal !important;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.article .bottom {
position: absolute;
bottom: 20rpx;
}
.bottom .date {
font-size: 20rpx;
color: #bfbfbf;
}
.bottom .type {
font-size: 20rpx;
color: #51c422;
border: 1px #51c422 solid;
border-radius: 8rpx;
padding: 2rpx 5rpx;
margin-right: 30rpx;
}
.bottom .author {
font-size: 20rpx;
color: #25c6fc;
border: 1px #25c6fc solid;
border-radius: 8rpx;
padding: 2rpx 5rpx;
margin-right: 30rpx;
}
.collect {
width: 50rpx;
height: 50rpx;
position: absolute;
bottom: 20rpx;
right: 20rpx;
}