-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 926 Bytes
/
style.css
File metadata and controls
62 lines (53 loc) · 926 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
62
html {
height: 100%;
margin: 0;
padding: 0;
font-family: Verdana, sans-serif;
}
body {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: stretch;
}
body > header, body > footer {
background: rgba(245, 245, 245, .5);
padding: 1em;
text-align: center;
}
body > footer {
z-index: 10;
position: absolute;
bottom: 0;
width: calc(100% - 2em);
}
footer > nav > ul {
list-style-type: none;
padding-inline: 0;
}
footer > nav > ul > li {
display: inline;
padding: 0 1em;
}
body > section {
margin: auto;
padding: 2em;
max-width: 1200px;
width: 100%;
}
dl {
display: grid;
grid-template-columns: fit-content(8em) auto;
margin-left: 3em;
}
dt {
font-weight: bold;
text-align: right;
grid-column-start: 1;
}
dd {
margin-left:1em;
grid-column-start: 2;
}