-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
62 lines (60 loc) · 1.08 KB
/
stylesheet.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
body {
background-color: antiquewhite;
font-family: "Helvetica", sans-serif;
}
div.topheader {
background-color: moccasin;
color: darkslategray;
height: 20em;
display: flex;
justify-content: center; /* align horizontal */
align-items: center; /* align vertical */
}
div.linkbar {
background-color: khaki;
color: darkslategray;
height: 5em;
display: flex;
justify-content: center; /* align horizontal */
align-items: center; /* align vertical */
}
div.bodytext {
background-color: antiquewhite;
color: darkslategray;
margin-left: 10em;
margin-right: 10em;
}
a.button {
background-color: khaki;
color: darkslategray;
text-align: center;
padding: 1em 1em;
margin: 1em 1em;
}
a.button:hover {
color: khaki;
background-color: darkslategrey;
}
a.button:active {
color: moccasin;
background-color: dimgrey;
}
figure {
padding: 1em 1em 1em 1em;
border: 1em solid khaki;
background-color: khaki;
}
figcaption {
font-style: italic;
font-size: 80%;
background-color: khaki;
}
h1 {
font-variant: small-caps;
}
p::first-line {
color: dimgrey;
}
p::first-letter {
font-size: 150%;
}