blob: 30979bd6ce85709e75a6d6840e788b5081d234c9 (
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
69
70
71
72
73
74
75
76
77
78
79
80
|
/*=== GLOBAL VIEW */
/*================*/
#stream{
.box.category{
&:not([data-unread="0"]) .box-title {
// background: #3498db;
}
&:not([data-unread="0"]) .box-title:active {
// background: #2980b9;
}
&:not([data-unread="0"]) .box-title .title {
font-weight: bold;
// color: #fff;
}
.box-title{
background: none;
padding: 1.5rem;
a.title{
font-weight: normal;
text-decoration: none;
text-align: left;
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
color: $grey-dark;
&:not([data-unread="0"])::after {
position: absolute;
top: 1.75rem;
right: 0;
line-height: 1.5rem;
background: $grey-light;
border-radius: 12px;
padding: 0 0.75rem;
margin: -0.5rem 1rem 0 0;
text-align: center;
}
&:hover{
color: $main-first;
}
}
}
.box-content{
padding-bottom: 0.5rem;
.item.feed {
// padding: 2px 10px;
font-size: 1rem;
padding: 0.5rem 1.5rem;
a{
color: $main-font-color;
font-weight: 400;
&:hover{
color: $main-first;
text-decoration: none;
}
}
}
}
}
}
// le panel qui apparait en overlay pour afficher les flux
#overlay{
background: rgba(0, 0, 0, 0.65);
}
#panel{
top: 3rem;
right: 3rem;
bottom: 3rem;
left: 3rem;
border-radius: 3px;
}
|