-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
69 lines (69 loc) · 1.19 KB
/
stylesheet.css
File metadata and controls
69 lines (69 loc) · 1.19 KB
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
:root {
--system-ui: ui-serif, Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
background-color: #f1e9df;
width: 960px;
margin: 0 auto;
padding: 60px 0 60px 0;
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 60px;
font-family: var(--system-ui);
font-weight: normal; /* 400 */
font-size: 1.1rem;
}
header {
width: 160px;
margin: 0 10px;
grid-column: 1 / 2;
}
header h1 {
color: #181818;
margin-bottom: 20px;
font-size: 2.13rem;
line-height: 34px;
letter-spacing: -1px;
}
header nav menu {
list-style-type: none;
}
header nav menu li {
margin-bottom: 10px;
line-height: 18px;
}
header nav menu a {
color: #555;
font-weight: bold; /* 700 */
font-size: 0.95rem;
text-decoration: none;
}
main {
margin: 0 10px;
grid-column: 2 / 6;
}
main h2, main a {
color: #333;
margin-bottom: 30px;
font-weight: bold; /* 700 */
}
main p {
margin-bottom: 20px;
text-align: justify;
}
main p.no-margin {
margin-bottom: 0;
}
main ol {
margin: 5px 0 20px 10px;
list-style: decimal inside;
}
footer {
margin: 0 10px;
grid-column: 1 / 6;
}
footer address, footer p, footer a {
color: #555;
}