-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
167 lines (161 loc) · 2.79 KB
/
style.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
body {
font-family: 'Open Sans', sans-serif;
background: #fff;
margin: 0;
}
a {
color: rgb(157, 66, 69);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.header {
text-align: right;
font-size: 14px;
margin: 20px 40px -20px 0;
}
.container {
padding: 20px 30px;
}
.spacer { clear: both; }
.logo {
float: left;
}
.about {
float: left;
margin-top: 5%;
}
.about h1 {
font-size: 50px;
line-height: 0px;
margin-bottom: 22px;
}
.about h2 {
font-size: 24px;
margin-top: 0;
font-weight: 100;
margin-left: 2px;
}
.about p {
font-size: 20px;
}
.questions {
background-color: rgb(155, 18, 18);
color: #fff;
}
.questions a {
color: #ffaaaa;
}
.question {
font-size: 20px;
}
.question h3 {
font-size: 24px;
}
.events {
}
.events h2 {
font-size: 28px;
}
.event {
width: 30%;
margin: 0 auto;
border: 1px solid rgb(221, 76, 76);
padding: 0 20px 10px;
}
.event h3 {
font-size: 24px;
}
.event p {
font-size: 16px;
}
.event address h4 {
display: inline-block;
margin-top: 0;
}
.footer {
text-align: center;
background-color: rgb(155, 18, 18);
color: #fff;
}
.footer .container {
padding: 1px;
}
.footer span {
font-weight: 600;
}
/* Small screens */
@media only screen and (max-width: 50em) { /* max-width 640px, mobile-only styles, use when QAing mobile issues */
.logo {
width: 100%;
}
.logo img {
width: 345px;
height: 275px;
display: block;
margin: 0 auto;
}
.about {
width: 100%;
}
.event {
width: 90%;
}
}
/* Medium screens */
@media only screen and (min-width: 50.063em) and (max-width: 90em) { /* min-width 641px and max-width 1440px, use when QAing tablet-only issues */
.logo {
width: 30%;
margin-top: 5%;
margin-right: 1%;
}
.logo img {
width: 100%;
height: auto;
}
.about {
width: 65%;
}
.question {
margin-top: 20px;
display: block;
float: left;
width: 30%;
padding: 1%;
}
.question:first-child {
margin-left: 3%;
}
.event {
width: 50%;
}
}
/* Large screens */
@media only screen and (min-width: 90em) { /* min-width 1440px, large screens */
.logo {
width: 345px;
height: 345px;
margin-top: 5%;
margin-right: 1%;
}
.logo img {
width: 345px;
height: 278px;
}
.about {
width: 65%;
}
.question {
display: block;
float: left;
width: 30%;
padding: 1%;
}
.question:first-child {
margin-left: 3%;
}
.event {
width: 30%;
}
}