blob: 5d151fa450ba69a1933605e56dbc0feb120246aa (
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
|
.blog__header {
font-size: 2.4rem;
font-weight: 900;
margin-top: 1cm;
}
.posts {
font-size: 1.2rem;
}
.post__link {
&:link {
text-decoration: none;
}
&:hover {
text-decoration: underline;
text-decoration-color: $secondaryColor;
text-decoration-thickness: 2px;
text-underline-offset: 2px;
}
}
.post__content {
margin-bottom: 2cm;
h1, h2, h3, h4, h5, h6 {
margin-bottom: 0px;
}
}
|