forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
34 lines (27 loc) · 646 Bytes
/
main.css
File metadata and controls
34 lines (27 loc) · 646 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
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');
body {
background-color: var(--color-dark-blue);
font-family: 'Courier Prime', monospace;
}
h1, h2, h3 {
color: var(--color-light-blue);
}
p,li {
color: var(--color-light-brown);
}
table{
border-collapse: collapse;
width: 100%;
}
th,td{
color: var(--color-light-brown);
border: 2px solid var(--color-dark-brown);
padding: 10px;
}
:root {
--color-dark-blue: #517D99;
--color-middle-blue: #91C5E6;
--color-light-blue: #BAE4FF;
--color-dark-brown: #9E9486;
--color-light-brown: #EBC692;
}