-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (48 loc) · 837 Bytes
/
styles.css
File metadata and controls
59 lines (48 loc) · 837 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
54
55
56
57
58
59
:root{
--dk-gray: #222;
--lt-gray: #eaeaea;
--bright-green: #D7F205;
--purple: #8857F2;
--violet: #6B71F2;
--orange: #F28705;
}
*{
font-family: Arial, Verdana, sans-serif;
line-height: 1.35;
color: var(--dk-gray);
}
body{
margin: 0;
}
header, footer{
text-align: center;
padding: 1.5rem;
background-color: var(--lt-gray);
}
h1, h2, h3{
text-align: center;
}
h1{
text-decoration: solid underline var(--purple) 4px;
}
h2{
text-decoration: solid underline var(--orange) 3px;
}
h3{
text-decoration: solid underline var(--violet) 2px;
}
p{
max-width: 65ch;
margin: 1rem auto;
}
code{
font-family: monospace;
font-size: 1rem;
}
section > section{
width: fit-content;
margin: 3rem auto;
}
mark{
background-color: var(--bright-green);
}