-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
137 lines (118 loc) · 3.14 KB
/
main.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
html, html a {
-webkit-font-smoothing: antialiased;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
html * {
margin: 0;
}
body {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 300;
font-size: 1.3em;
background: rgb(213,210,134); /* Old browsers */
background: -moz-linear-gradient(top, rgba(213,210,134,1) 0%, rgba(221,221,221,1) 50%, rgba(238,238,238,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(213,210,134,1)), color-stop(50%,rgba(221,221,221,1)), color-stop(100%,rgba(238,238,238,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(213,210,134,1) 0%,rgba(221,221,221,1) 50%,rgba(238,238,238,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(213,210,134,1) 0%,rgba(221,221,221,1) 50%,rgba(238,238,238,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(213,210,134,1) 0%,rgba(221,221,221,1) 50%,rgba(238,238,238,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(213,210,134,1) 0%,rgba(221,221,221,1) 50%,rgba(238,238,238,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d5d286', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}
p {
margin-bottom: 0.5em;
}
a {
font-weight: 700;
text-decoration: none;
color: #BAA154;
}
.highlight{
color: #5465BA;
}
.masthead-heading,
.masthead-intro {
text-align: center;
}
.masthead {
padding: 6em 0;
border-top: 0.75em solid #f4d36e;
background-image: url("http://i.imgur.com/jBy0oof.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.masthead-intro {
margin-bottom: -0.5em;
font-size: 1.85em;
color: #EEE;
font-family: "Gentium Book Basic", serif;
letter-spacing: -0.075ex;
}
.masthead-heading {
margin-bottom: -0.2em;
font-size: 6em;
color: #FFF1C2;
font-family: "Open sans", "Helvetica Neue", sans-serif;
font-weight: 700;
text-shadow: 0 4px #E28B6C;
letter-spacing: -0.03em;
text-transform: uppercase;
}
.introduction-section,
.location-section,
.questions-section {
max-width: 35em;
margin: 2em auto 0;
}
.introduction>p,
.location>p,
.content-footer>p{
font-weight: 300;
letter-spacing: 0.05em;
}
.questions-section>h2{
font-family: "Gentium Book Basic", Georgia, serif;
font-size: 1.2em;
font-weight: bold;
}
.content-footer {
background-color: #8C7E65;
height: 12em;
text-align: center;
margin: 3em auto 0;
color: #ccc;
padding-top: 3em;
font-size: 0.85em;
}
.content-footer ul li{
list-style-type: none;
display: inline-block;
margin-right: 1em;
}
.content-footer ul li a {
color: #f4d36e;
font-size: 0.9em;
font-weight: 700;
}
.copyright{
font-size: 0.75em;
font-weight: 100;
}
@media only screen and (max-width: 500px) {
.masthead {
padding: 3em 0;
}
.masthead-heading {
font-size: 3em;
}
.content-footer {
padding: 4em;
}
}
@media only screen and (max-width: 767px) {
.introduction-section,
.location-section,
.questions-section {
max-width: 90%;
}
}