-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathstatus-styles.css
More file actions
60 lines (60 loc) · 1.21 KB
/
status-styles.css
File metadata and controls
60 lines (60 loc) · 1.21 KB
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
body.main-width-max #R-body .flex-block-wrapper {
max-width: 1170px;
width: 100%;
}
status-article {
display: block;
box-sizing: border-box;
vertical-align: top;
}
status-section {
width: 100%;
}
status-section:has(status-article) {
display: flex;
flex-wrap: wrap;
column-gap: 24px;
row-gap: 5px;
align-items: flex-start;
}
status-section:has(status-article) > status-article {
flex: 0 0 calc(33.333% - 24px);
min-width: 260px;
}
@media (max-width: 1100px) {
status-section:has(status-article) > status-article {
flex: 0 0 calc(50% - 24px);
}
}
@media (max-width: 720px) {
status-section:has(status-article) > status-article {
flex: 0 0 100%;
}
}
status-article > details > div {
padding-left: 3px;
padding-right: 3px;
}
status-section > details > summary {
font-size: 26px;
font-weight: bold;
color: #08c;
text-decoration: underline;
cursor: pointer;
}
status-section > status-article > details > summary {
color: #08c;
text-decoration: underline;
cursor: pointer;
}
i.icon-star:before {
color: #a00;
font-size: 16px;
font-style: normal;
content: "\2605";
}
blockquote {
border-left: 5px solid #eee;
}
::marker{ display:none; }
summary{ list-style: none }