-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (43 loc) · 784 Bytes
/
styles.css
File metadata and controls
53 lines (43 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
51
52
53
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;800&display=swap');
body {
font-size: 18px;
max-width: 800px;
margin: 0 auto !important;
float: none !important;
background-color: #1e1e1e;
color: darkgrey;
font-family: 'Open Sans', sans-serif;
}
p {
text-align: justify;
}
p.callout {
background-color: #007acc;
color: whitesmoke;
padding: 10px;
}
p.callout a:link, p.callout a:visited {
color: white;
}
p.callout strong {
color: palevioletred;
}
h1 {
font-size: 48px;
color: whitesmoke;
}
h2 {
font-size: 36px;
color: whitesmoke;
}
h3 {
font-size: 24px;
color: whitesmoke;
}
a:link, a:visited {
color: #029aff;
}
a:hover {
color: white;
text-decoration: none;
}