-
Notifications
You must be signed in to change notification settings - Fork 0
/
ericoc.css
87 lines (72 loc) · 1.8 KB
/
ericoc.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@font-face {
font-family: 'Permanent Marker';
src: local('Permanent Marker'),
local('PermanentMarker'),
local('Permanent Marker Regular'),
local('PermanentMarker-Regular'),
url('logo.woff') format('woff'),
url('logo.woff2') format('woff2'),
url('logo.ttf') format('truetype');
}
body {
font-family: 'Open Sans', sans-serif;
}
h1, header, header a:link, header a:visited {
color: #4682B4;
font-family: 'Permanent Marker', cursive;
font-size: 1.5em;
font-weight: normal;
margin: auto;
text-align: center;
text-decoration: none;
}
#logo, a:link, header a:hover, header a:active {
color: #0096FF;
text-decoration: none;
}
a:active, a:hover {
color: #4682B4;
text-decoration: underline;
}
a:visited {
color: #4682B4;
text-decoration: none;
}
main {
margin: auto;
width: 75vw;
}
nav ul, #background ul {
font-size: 1.2em;
list-style: none;
padding: 0;
text-align: center;
word-spacing: 2em;
}
nav li, #background li {
display: inline;
}
h2 {
font-size: 1.2em;
}
h3, h4, h5, h6 {
font-weight: normal;
margin: 0;
margin-left: 1vw;
}
h4 {
font-style: italic;
}
h5 {
font-size: 0.85em;
}
footer, .error {
padding: 1em;
text-align: center;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #323639;
color: #d6d6d7;
}
}