-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththread.css
52 lines (44 loc) · 946 Bytes
/
thread.css
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
.topic-item {
padding: 35px 25px;
border: 1px solid #e9e9e9;
grid-template-columns: auto auto;
display: grid;
border-radius: 5px;
}
@media only screen and (min-width: 370px) {
div.topic-item > video, div.topic-item > img {
width: 100px;
height: 100px;
grid-column-start: 1;
}
img {
width: 100px;
height: 100px;
}
}
div.topic-item > video, div.topic-item > img {
width: 150px !important;
height: 150px !important;
grid-column-start: 1;
}
div.topic-item > .topic-content {
grid-column-start: 2;
padding-left: 30px;
}
.topic-content > p {
overflow: hidden;
text-overflow: ellipsis;
height: 92px;
}
img.default {
width: 150px;
height: 150px;
}
.topic-list:not(:first-child) {
margin-top: 20px;
}
.disabled {
color: #999 !important;
background-color: #e9e9e9 !important;
border: 1px solid #d2d2d2 !important;
}