-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
70 lines (56 loc) · 975 Bytes
/
index.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
/* -*- Mode: CSS -*- */
/**
* Style sheet for index.html
*/
@import url("./normalize.css");
@import url("./link.css");
/* General rules. */
body {
background-color: white;
color: black;
max-width: 900px;
margin: 0 auto;
}
img {
max-width: 100%;
}
/* Header rules. Put the banner image in center. */
header {
align-items: center;
display: flex;
justify-content: center;
}
/* Main rules */
main {
padding: 0em 1em;
}
main dl>dd {
margin: 0em 0em 1em 1em;
}
/* Footer rules */
body {
display: grid;
grid-template-rows: auto 1fr auto;
min-height: 100vh;
}
footer {
border-top: 1px solid grey;
color: black;
font: 0.9em times, "times new roman", sans-serif;
padding: 10px 0px;
}
footer ul,
footer ol {
list-style-type: none;
}
footer ul {
align-items: center;
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 0;
padding: 0;
}
#footer_copyright {
flex: 1 auto;
}