-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnical_note.css
More file actions
50 lines (41 loc) · 784 Bytes
/
technical_note.css
File metadata and controls
50 lines (41 loc) · 784 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Balthazar&display=swap');
h1.title {
font-size: 38px;
color: DarkRed;
text-align: center;
}
h3.subtitle {
font-size: 28px;
color: DarkRed;
text-align: center;
}
h4.author { /* Header 4 - and the author and data headers use this too */
font-size: 22px;
color: DarkBlue;
text-align: center;
}
h4.date { /* Header 4 - and the author and data headers use this too */
font-size: 18px;
color: DarkBlue;
text-align: center;
}
body {
font-family: 'Balthazar', serif;
}
h1, h2 {
text-align: center;
font-weight: bolder;
}
p {
font-size: 2rem;
}
pre {
border: solid black 2px;
}
a {
color: #e91e63;
text-decoration: underline;
}
h1::first-letter, h2::first-letter {
font-size: 200%;
}