blob: c6deabb2721ac2af82b884b211487c2b8b6fcea9 (
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
|
// primer CSS markdown color remap
#post-content {
&.markdown-body {
font-family: inherit !important;
}
h1, h2, h3, h4, h5, h6 {
color: $color-primary;
}
h1 {
font-size: $font-size-l1;
border-bottom: $spliter;
}
h2 {
font-size: $font-size-l2;
border-bottom: $spliter;
}
h3 {
font-size: $font-size-l3;
}
h4, h5, h6 {
font-size: $font-size-l4;
}
hr {
background-color: $color-spliter;
}
ul {
list-style-type: circle;
}
@include link-secondary();
}
|