-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
153 lines (132 loc) · 3.71 KB
/
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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* html5doctor.com Reset Stylesheet */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, code, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body { line-height: 1.5; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
nav ul { list-style: none; padding-left: 0; }
a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
ins { background-color: rgba(255, 255, 255, 0.4); text-decoration: none; }
mark { background-color: rgba(255, 255, 255, 0.4); font-style: inherit; font-weight: bold; }
del { text-decoration: line-through; }
em { font-style: italic; }
strong { font-weight: bold; }
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px dashed white; width: 80%; margin: 1em auto; padding: 0; }
input, select { vertical-align: middle; }
h1 { font-size: 2rem; line-height: 100%; margin-top: .5em; margin-bottom: .5em; }
h2 { font-size: 1.5rem; line-height: 128.6%; margin-top: 1.143em; }
h3 { font-size: 1.25rem; margin-top: 1.1em; }
h4 { margin-top: .5rem; }
p, ul, ol, dl, pre, code, blockquote { font-size: 1rem; }
li { margin-bottom: .75%; }
small, aside { font-size: 0.75em; }
body {
color: black;
background-color: #ccbb75;
background-image: url("light-wool.png");
font: 16px/1.6rem "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
font-family: "Monda", sans-serif;
margin-left: 1rem;
margin-right: 1rem;
}
header, footer {
color: #d6c991;
background-color: #3f8754;
font-family: "Monda", sans-serif;
text-align: center;
padding: 1rem;
border-top: solid black thick;
border-bottom: solid black thick;
}
footer a {
color: inherit;
}
header p, h1 {
margin-top: 0;
margin-bottom: 0;
}
header ul {
display: flex;
justify-content: space-between;
margin-top: 1rem;
list-style: none;
padding-left: 0;
}
header ul li svg {
max-width: 100%;
max-height: 3rem;
fill: #d6c991;
}
header ul li label {
text-align: center;
text-decoration: underline;
display: block;
color: #d6c991;
cursor: pointer;
}
header ul li::hover label, header ul li::hover a, header ul li::hover svg,
header ul li::focus label, header ul li::focus a, header ul li::focus svg {
color: black;
fill: black;
}
main {
display: flex;
}
div.flex-wrapper {
flex: 4;
padding-bottom: 1rem;
}
div.flex-wrapper a::hover, div.flex-wrapper a::focus {
color: black;
}
nav {
font-size: 85%;
padding: .5rem;
background-color: #5e9bb4;
background-image: url("dark-mosaic.png");
overflow: auto;
border-right: solid black thick;
flex: 1 1 5rem;
align-items: stretch;
}
nav ul {
margin: 0;
padding: 0;
}
nav li {
float: left;
background-color: #5e70b4;
border: solid 1px black;
margin: 0.5rem;
}
nav a {
color: white;
padding: .5rem;
display: block;
}
ul {
margin-left: 1rem;
margin-right: 1rem;
padding-left: 1rem;
}
ol {
margin-left: 1rem;
margin-right: 1rem;
padding-left: 1.7rem;
}
p {
margin-left: 1rem;
margin-right: 1rem;
}
a {
color: #5e70b4;
}
svg.hide {
height: 3rem;
width: 3rem;
display: none;
}