blob: 6dc36572408e37f0be8dbf0e300b4b976ae52621 (
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
51
52
53
|
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;400;700&display=swap');
* {
box-sizing: border-box;
}
.title {
font-size: 1.5em;
color: red;
background-color: yellow;
}
.subtitle {
font-size: 1.3em;
color: yellow;
background-color: red;
}
.sourceCode {
font-size: 0.86em;
}
figcaption {
font-size: 0.69em;
}
/* img { */
/* display: block; */
/* margin-left: auto; */
/* margin-right: auto; */
/* width: 50%; */
/* } */
body {
font-family: 'Roboto Slab', serif;
font-size: 22px;
margin-left: auto;
margin-right: auto;
max-width: 800px;
padding: 20px;
}
li {
margin-top: 1.2em;
margin-bottom: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
text-align: left;
}
a {
color: orange;
}
|