-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (48 loc) · 779 Bytes
/
style.css
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
:root {
--prussian-blue: #052f5fff;
--blue-sapphire: #005377ff;
--green-munsell: #06a77dff;
--dark-khaki: #d5c67aff;
--marigold: #f1a208ff;
}
body {
width: 1000px;
margin: 0 auto;
font-family: Tahoma, sans-serif;
}
header {
text-align: center;
font-size: 3em;
border-bottom: 3px solid var(--green-munsell);
}
h1 {
margin: 0.25em 0 0.25em 0;
font-size: 1em;
}
h2 {
margin: 1em 0 1em 0;
}
a {
color: var(--green-munsell);
}
.description {
width: 100%;
margin: 0 auto;
text-align: center;
font-size: 1.5em;
}
.blur {
font-size: 0.75em;
text-align: left;
}
.sidebar {
width: 18em;
margin: 0 0 0 0;
position: absolute;
}
.main {
width: -1em;
margin: 0 0 0 18em;
padding-left: 1em;
border-left: 3px solid var(--green-munsell);
}