-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (61 loc) · 878 Bytes
/
style.css
File metadata and controls
61 lines (61 loc) · 878 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
60
61
body {
background: #fec;
color: #321;
font-family: georgia, serif;
font-size: large;
line-height: 1.5;
margin: 0 auto;
padding: 0 1em;
}
header, footer {
text-align: center;
}
h1 {
margin-bottom: 0;
}
header div {
margin: 0.5em 0;
}
header nav {
margin: 1em 0 2em 0;
}
footer p {
max-width: 40em;
margin: 1em auto;
}
nav span {
margin: 0 0.25em;
}
hr {
margin: 2em 0 1.5em 0;
border: 0;
border-bottom: 0.1em dotted #986;
}
a:link {
color: #600;
}
a:visited {
color: #300;
}
a:focus, a:hover, a:active {
color: #900;
}
main {
display: grid;
gap: 1em;
grid-template-columns: repeat(auto-fit, minmax(16em, 1fr));
}
section {
background: #edb;
border-radius: 0.5em;
border: thin solid #986;
padding: 1em 1.25em;
overflow-wrap: break-word;
}
section h2 {
margin: 0;
}
section h3 {
margin: 0 0 0.75em 0;
font-size: 1em;
}