-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
400 lines (354 loc) · 7.75 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
/* added quotes around URL - RH */
@import url("http://fonts.googleapis.com/css?family=Oswald");
body {
background-color: #000;
font-family: "Oswald", "Futura", sans-serif;
margin: 0;
padding: 0;
}
/*#################################################
#5 I just noticed - when my stylesheet was working,
that my page background color wasn't right.
What up with this you think? BC
I changed .page class selector to #page id selector - RH
#################################################*/
#page {
background-color: #403c3b;
margin: 0 auto 0 auto;
position: relative;
text-align: center;
}
/* Responsive page rules at bottom of style sheet */
/*#################################################
#6 And now my icon is gone! It works when I'm cxt
to the Inet! - BC
I added quotes around all image URL's - RH
#################################################*/
h1 {
background-image: url("http://javascriptbook.com/code/c07/images/kinglogo.png");
background-repeat: no-repeat;
background-position: center center;
text-align: center;
text-indent: -1000%;
height: 75px;
line-height: 75px;
width: 117px;
margin: 0 auto 0 auto;
padding: 30px 10px 20px 10px;
}
/*#################################################
#7 Did you get my kinglogo icon working? Thx :)
Can you run through and see if there are any other
images that also need your attention. BC
Logo/Icon was visible for me but double checked hexcodes
and image URL's- RH
#################################################*/
h2 {
color: #fff;
font-size: 24px;
font-weight: normal;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.3em;
display: inline-block;
margin: 0 0 23px 0;
}
h2 span {
background-color: #fff;
color: #000;
font-size: 12px;
text-align: center;
letter-spacing: 0;
display: inline-block;
position: relative;
border-radius: 50%;
top: -5px;
height: 22px;
width: 26px;
padding: 4px 0 0 0;
}
ul {
border: none;
padding: 0;
margin: 0;
}
/*#################################################
#8* Can you make ALL my list items to be lowercase?
okay - fix it in css.
better - can you do it in js or jQuery? -DID it!
chained .toLowerCase() to external script line #44 to conver all "input:text" "li" values to lower case. - RH
- BC
I changed list All list items toLowerCase(in JQuery external script- RH
(done? now check on all my script, #9 is there)
#################################################*/
li {
background-color: #ec8b68;
color: #fff;
border-top: 1px solid #fe9772;
border-bottom: 1px solid #9f593f;
font-size: 24px;
letter-spacing: 0.05em;
list-style-type: none;
text-shadow: 2px 2px 1px #9f593f;
text-align: left;
height: 50px;
padding-left: 1em;
padding-top: 10px;
}
li a {
color: #fff;
background-image: url("../images/icon-link.png");
background-position: right, center;
background-repeat: no-repeat;
text-decoration: none;
padding-right: 36px;
}
li.complete a {
background-image: none;
}
p {
background-color: #fff;
color: #666;
padding: 10px;
display: inline-block;
margin: 20px auto 20px auto;
width: 80%;
border-radius: 5px;
text-align: center;
}
.hot {
background-color: #d7666b;
color: #fff;
text-shadow: 2px 2px 1px #914141;
border-top: 1px solid #e99295;
border-bottom: 1px solid #914141;
}
.cool {
background-color: #6cc0ac;
color: #fff;
text-shadow: 2px 2px 1px #3b6a5e;
border-top: 1px solid #7ee0c9;
border-bottom: 1px solid #3b6a5e;
}
.complete {
background-color: #999;
color: #fff;
background-image: url("http://javascriptbook.com/code/c07/images/icon-trash.png");
background-position: right, center;
background-repeat: no-repeat;
border-top: 1px solid #666;
border-bottom: 1px solid #b0b0b0;
text-shadow: 2px 2px 1px #333;
}
.complete a {
display: block;
}
.favorite {
background-image: url("http://javascriptbook.com/code/c07/images/icon-heart.png");
background-position: right, center;
background-repeat: no-repeat;
}
em.seasonal {
background-image: url("http://javascriptbook.com/code/c07images/icon-calendar.png");
background-position: left center;
background-repeat: no-repeat;
padding-left: 30px;
}
/* FORM STYLES */
form {
padding: 0 20px 20px 20px;
}
label {
color: #fff;
display: block;
margin: 10px 0 10px 0;
font-size: 24px;
}
input[type="text"],
input[type="password"],
textarea {
background-color: #999;
color: #333;
font-size: 24px;
width: 96%;
padding: 4px 6px;
border: 1px solid #999;
border-radius: 8px;
}
input[type="submit"],
a.add,
button,
a.show {
background-color: #cb6868;
color: #f3dad1;
border-radius: 8px;
border: none;
padding: 8px 10px;
margin-top: 10px;
font-family: "Oswald", "Futura", sans-serif;
font-size: 18px;
text-decoration: none;
text-transform: uppercase;
}
input[type="submit"],
a.add,
button {
float: right;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
border: 1px solid #fff;
background-color: #fff;
outline: none;
}
input[type="submit"]:hover,
a.add:hover,
a.show:hover {
background-color: #000;
color: #fff;
cursor: pointer;
}
::-webkit-input-placeholder {
color: #403c3b;
font-family: arial, sans-serif;
}
:-moz-placeholder {
/* Firefox 18- */
color: #403c3b;
font-family: arial, sans-serif;
}
::-moz-placeholder {
/* Firefox 19+ */
color: #403c3b;
font-family: arial, sans-serif;
}
:-ms-input-placeholder {
color: #403c3b;
font-family: arial, sans-serif;
}
textarea {
width: 96%;
height: 5em;
line-height: 1.4em;
}
select,
option {
font-size: 16px;
}
#feedback,
#termsHint {
color: #fff;
background-image: url("../images/warning.png");
background-repeat: no-repeat;
background-position: 2px 14px;
padding: 10px 0 0 22px;
}
#packageHint {
color: #fff;
background-image: url("../images/hint.png");
background-repeat: no-repeat;
background-position: 2px 5px;
padding-left: 22px;
}
label.selectbox {
display: inline;
}
label.checkbox {
display: inline;
font-size: 16px;
}
/* Link to show list */
h2 a {
font-size: 12px;
}
a.show {
font-size: 12px;
padding: 5px;
letter-spacing: 0;
position: relative;
top: -5px;
left: 10px;
}
/* form example */
#newItemButton {
padding: 10px 20px 75px 20px;
display: none;
}
#newItemForm {
padding-top: 20px;
}
#itemDescription {
width: 360px;
}
#newItemForm input[type="submit"] {
margin-top: 0;
text-align: left;
}
/* Attributes example */
#group {
margin: 10px;
border: 2px solid #fff;
}
/* Events object */
.date,
li i {
font-size: 12px;
padding-left: 8px;
}
/* Additional styles for position example */
#slideAd {
width: 130px;
height: 60px;
background-color: #403c3b;
background-image: url("../images/adverlion.png");
background-repeat: no-repeat;
background-position: 10px center;
color: #fff;
border-top: 1px solid #fff;
border-left: 1px solid #fff;
border-bottom: 1px solid #fff;
padding: 25px 20px 10px 85px;
position: fixed;
bottom: 20px;
right: -235px;
text-transform: uppercase;
}
#footer {
background: none;
color: #fff;
}
/* Small screen:mobile */
@media only screen and (max-width: 500px) {
body {
background-color: #403c3b;
}
#page {
max-width: 480px;
}
}
@media only screen and (min-width: 501px) and (max-width: 767px) {
#page {
max-width: 480px;
margin: 20px auto 20px auto;
}
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
#page {
max-width: 480px;
margin: 20px auto 20px auto;
}
}
/* Larger screens act like a demo for the app */
@media only screen and (min-width: 960px) {
#page {
max-width: 480px;
margin: 20px auto 20px auto;
}
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
h1 {
background-image: url(../images/2xkinglogo.png);
background-size: 72px 72px;
}
}