This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 241
/
styles.css
73 lines (65 loc) · 1.47 KB
/
styles.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
71
72
73
/* Styles for example pages */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
img,object,embed {
display: block;
max-width: 100%;
}
/* Base colors
* #E9632F Orange
* #F6CDB9 Orange light
* #3A180B Dark
* #743115 Mid
* #FFF White
*/
body {
max-width: 1050px;
margin: 0 auto;
font-family: Baskerville, "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif;
font-size: 100%;
line-height: 1.4em;
background: #E9632F;
color: #FFF;
}
p {
padding: 1em;
background: #743115;
font-size: 1em;
margin: 0;
}
h1 {
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans serif;
font-size: 4.5em;
font-weight: bold;
letter-spacing: 0.05em;
line-height: 1.5em;
text-transform: uppercase;
text-align: center;
margin: 0;
}
h1 small {
text-transform: none;
font-weight: normal;
font-size: 0.5em;
letter-spacing: normal;
font-family: Baskerville, "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif;
}
#timeline {
-webkit-box-shadow: 0 0 12px rgba(0,0,0,0.2);
box-shadow: 0 0 12px rgba(0,0,0,0.2);
overflow: hidden;
}
.footer {
font-size: 1em;
color: #FFF;
margin: 0.5em;
}
.footer a {
color: #FFF;
text-decoration: underline;
font-weight: bold;
}