blob: e328cfb6059162a994754eb99e14a37860305cbe (
plain) (
blame)
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
|
@use '_variables' as *;
@use '_mixins' as *;
.pt-badge {
@include margin-right(5px);
}
.section-title {
font-weight: $font-semibold;
margin-bottom: 5px;
display: flex;
align-items: center;
font-size: 1rem;
}
.middle-title {
@include in-content-small-title;
@include margin-bottom(1.5rem);
margin-top: 0;
}
.block {
@include margin-bottom(4.5rem);
}
.anchor-link {
@include disable-outline;
position: relative;
&:hover,
&:active {
&::after {
@include margin-left(0.2em);
content: '#';
display: inline-block;
}
}
.middle-title,
.section-title {
display: inline-block;
}
.section-title {
color: var(--mainForegroundColor);
}
}
|