-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
193 lines (160 loc) · 2.92 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: 'Lato', sans-serif;
}
/*
* -- BASE STYLES --
* Most of these are inherited from Base, but I want to change a few.
*/
body {
height: auto;
background-color: white;
font-size: 13px;
font-family: 'Lato', sans-serif;
}
.all {
max-width: 968px;
margin: 0 auto;
float: none;
}
.container {
margin: 0;
}
.pure-img-responsive {
max-width: 100%;
height: auto;
}
/* hero using bootstrap */
.jumbotron {
color: #FAF9EF;
background-image: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/picnic.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 45vh;
margin-bottom: 0;
}
.jumbotron,
h1 {
font-family: 'Quando', serif;
font-weight: 200;
text-align: center;
letter-spacing: .05em;
font-size: 400px;
}
.jumbotron,
p {
font-family: 'Lato', sans-serif;
font-size: large;
}
/*
* -- MENU STYLES -- */
.home-menu {
text-align: center;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
background: #DC7718;
padding: 2em;
}
.pure-menu.pure-menu-fixed {
border-bottom: 1em;
z-index: 4;
}
.home-menu .pure-menu-heading {
color: #FAF9EF;
font-weight: 700;
font-size: 120%;
text-align: center;
margin: 0;
font-family: 'Lato', sans-serif;
}
.pure-form-stacked {
width: 100%;
}
#location {
width: 50%;
}
.pure-checkbox {
color: #FAF9EF;
text-align: left;
}
.pure-button {
background-color: #394D56;
color: #FAF9EF;
padding: 0.5em .5em;
border-radius: 5px;
font-family: 'Lato', sans-serif;
}
fieldset {
margin: 4px;
}
#addressInput {
border-radius: 16px;
width: 250px;
height: 35px;
}
#eitherORsearch {
font-family: 'Lato', sans-serif;
}
/*body style*/
/*
* -- LAYOUT STYLES --
* These are some useful classes which I will need
*/
label {
width: auto;
}
.l-box {
padding: 1em;
margin: 8px;
}
.pure-g div {
box-sizing: auto;
}
h2 {
letter-spacing: normal;
padding-left: 1em;
border-width: 2px;
margin: 8px;
border-top: 0;
border-right: 0;
text-align: center;
}
h4 {
margin-right: 1em;
width: 100%;
}
.card {
margin-bottom: 1em;
border: 2px solid#394D56;
}
.card-header {
display: inline-flex;
}
#resultsDiv {
display: none;
}
/* -- TABLET (AND UP) MEDIA QUERIES --
* On tablets and other medium-sized devices, we want to customize some
* of the mobile styles.
*/
@media (min-width: 30em) {
/* We increase the body font size */
body {
font-size: 16px;
}
/* We can align the menu header to the left, but float the
menu items to the right. */
.home-menu {
text-align: center;
}
}
@media (max-width: 568px) {
.l-box {
display: none;
}
.container {
margin: 0
}
}