-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet_md.css
61 lines (51 loc) · 959 Bytes
/
stylesheet_md.css
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
51
52
53
54
55
56
57
58
59
60
61
/* stylesheet for the shadow DOM element with rendered markdown */
h1,
h2,
h3 {
text-align: center;
font-family: "Josefin Sans", sans-serif;
}
.markdown-body a {
color: var(--link-colour);
}
.markdown-body {
font-family: "Roboto", sans-serif;
max-width: 95vw;
color: var(--text-colour);
text-align: justify;
}
.markdown-body img {
display: block;
max-height: 30rem;
margin: 0 auto;
background-color: unset;
}
.markdown-body table {
max-width: max-content;
margin: 0 auto 1rem;
}
figcaption {
text-align: center;
font-size: 0.8rem;
color: var(--unimportanttext-colour);
}
.toc li > p {
margin: 0.5rem 0;
padding: 0;
}
.markdown-body h1,
.markdown-body h2 {
border-bottom-color: var(--border-colour);
}
img {
color: rgb(221, 37, 37);
text-align: center;
}
.markdown-body > video {
display: block;
max-height: 30rem;
max-width: 100%;
margin: 0 auto;
background-color: unset;
margin-bottom: 16px;
}