blob: 006f6ee9a3e85bf7d86f4854cadce66093b6a704 (
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
|
/*
* Post menu
*/
.post-menu {
padding: 0 20px;
max-width: 250px;
.post-menu-title {
font-size: $base-font-size * 1.35;
margin-bottom: 6px;
font-weight: 600;
color: #4e4e4e;
&:before {
content: '\f02e';
margin-right: 5px;
font-size: $base-font-size * 1.15;
}
}
.post-menu-content {
ul {
@for $i from 2 to 7 {
.h-h#{$i} {
padding-left: ($i - 2) * $base-font-size * 0.9;
font-size: (7 - $i) + $base-font-size * 0.9;
}
}
a {
display: flex;
padding: 0px 8px;
* {
pointer-events: none;
}
}
.active {
color: white;
background: mix(invert($theme-color), darkorange);
transition: background 0.5s;
}
}
}
}
|