blob: 3a0f38ae2afdd4fbfceb0c628e95322848cf8c97 (
plain)
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
|
/*=== GLOBAL VIEW */
/*================*/
#stream {
.box.category {
&:not([data-unread="0"]) .box-title .title {
font-weight: bold;
}
.box-title {
padding: 1.5rem;
background: none;
a.title {
color: var(--grey-dark);
font-size: 1rem;
font-weight: normal;
text-decoration: none;
text-align: right;
text-transform: uppercase;
letter-spacing: 1px;
&:not([data-unread="0"])::after {
margin: -0.5rem 0 0 1rem;
padding: 0 0.75rem;
background: var(--grey-light);
border-radius: 12px;
position: absolute;
top: 1.75rem;
left: 0;
line-height: 1.5rem;
text-align: center;
}
&:hover {
color: var(--main-first);
}
}
}
.box-content {
.item.feed {
a {
color: var(--main-font-color);
font-weight: 400;
&:hover {
color: var(--main-first);
text-decoration: none;
}
}
}
}
}
}
/* the panel that appears in overlay to display the flows*/
#overlay {
background: rgba(0, 0, 0, 0.65);
}
#panel {
top: 3rem;
left: 3rem;
bottom: 3rem;
right: 3rem;
border-radius: 3px;
}
|