aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/custom.css
blob: d3b1672f3c6486e05605afdefc8c0b25a291fe55 (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
/* Place a custom css file in your own project to use this. */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  border-bottom: var(--primary) solid 1px;
}

.post-content h1::before,
.post-content h2::before,
.post-content h3::before,
.post-content h4::before,
.post-content h5::before,
.post-content h6::before {
  color: var(--secondary);
  padding-right: 0.3rem;
}

.post-content h2::before { content: '#'; }
.post-content h3::before { content: '##'; }
.post-content h4::before { content: '###'; }
.post-content h5::before { content: '####'; }
.post-content h6::before { content: '#####'; }

li.revision {
  list-style: inside;
}