1 | /* |
---|
2 | Document : tile1 |
---|
3 | Created on : 25-jan-2012, 14:17:22 |
---|
4 | Author : HP |
---|
5 | Description: |
---|
6 | Purpose of the stylesheet follows. |
---|
7 | */ |
---|
8 | |
---|
9 | /* |
---|
10 | TODO customize this sample style |
---|
11 | Syntax recommendation http://www.w3.org/TR/REC-CSS2/ |
---|
12 | */ |
---|
13 | |
---|
14 | root { |
---|
15 | display: block; |
---|
16 | } |
---|
17 | /* http://meyerweb.com/eric/tools/css/reset/ |
---|
18 | v2.0 | 20110126 |
---|
19 | License: none (public domain) |
---|
20 | */ |
---|
21 | |
---|
22 | html, body, div, span, applet, object, iframe, |
---|
23 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
---|
24 | a, abbr, acronym, address, big, cite, code, |
---|
25 | del, dfn, em, img, ins, kbd, q, s, samp, |
---|
26 | small, strike, strong, sub, sup, tt, var, |
---|
27 | b, u, i, center, |
---|
28 | dl, dt, dd, ol, ul, li, |
---|
29 | fieldset, form, label, legend, |
---|
30 | table, caption, tbody, tfoot, thead, tr, th, td, |
---|
31 | article, aside, canvas, details, embed, |
---|
32 | figure, figcaption, footer, header, hgroup, |
---|
33 | menu, nav, output, ruby, section, summary, |
---|
34 | time, mark, audio, video { |
---|
35 | margin: 0; |
---|
36 | padding: 0; |
---|
37 | border: 0; |
---|
38 | font-size: 100%; |
---|
39 | font: inherit; |
---|
40 | vertical-align: baseline; |
---|
41 | } |
---|
42 | /* HTML5 display-role reset for older browsers */ |
---|
43 | article, aside, details, figcaption, figure, |
---|
44 | footer, header, hgroup, menu, nav, section { |
---|
45 | display: block; |
---|
46 | } |
---|
47 | body { |
---|
48 | line-height: 1; |
---|
49 | } |
---|
50 | ol, ul { |
---|
51 | list-style: none; |
---|
52 | } |
---|
53 | blockquote, q { |
---|
54 | quotes: none; |
---|
55 | } |
---|
56 | blockquote:before, blockquote:after, |
---|
57 | q:before, q:after { |
---|
58 | content: ''; |
---|
59 | content: none; |
---|
60 | } |
---|
61 | table { |
---|
62 | border-collapse: collapse; |
---|
63 | border-spacing: 0; |
---|
64 | } |
---|
65 | |
---|
66 | /* END CSS RESET STYLES */ |
---|
67 | |
---|
68 | |
---|
69 | |
---|
70 | /* ******************* */ |
---|
71 | /* PANEL WIDTH = 960PX */ |
---|
72 | /* BLOCK WIDTH = 230PX */ |
---|
73 | /* BORDER WIDTH = 10PX */ |
---|
74 | /* GUTTER WIDTH = 5PX */ |
---|
75 | /* ******************* */ |
---|
76 | |
---|
77 | |
---|
78 | html { |
---|
79 | font-family: 'Segoe UI', sans-serif; |
---|
80 | font-size: 14px; |
---|
81 | color: #000; |
---|
82 | background: #0000; |
---|
83 | } |
---|
84 | |
---|
85 | #header { |
---|
86 | width: 100%; |
---|
87 | height: 36px; |
---|
88 | margin-bottom: 20px; |
---|
89 | } |
---|
90 | |
---|
91 | #upperBar { |
---|
92 | height: 12px; |
---|
93 | background: #fff; |
---|
94 | } |
---|
95 | |
---|
96 | #lowerBar { |
---|
97 | height: 24px; |
---|
98 | background: #508fd2; |
---|
99 | } |
---|
100 | |
---|
101 | #upperBar .content { |
---|
102 | width: 942px; |
---|
103 | height: 50px; |
---|
104 | margin: 0 auto; |
---|
105 | padding: 0 10px; |
---|
106 | |
---|
107 | } |
---|
108 | |
---|
109 | #logo1 { |
---|
110 | float: left; |
---|
111 | width: 230px; |
---|
112 | height: 50px; |
---|
113 | background-image: url('../images/logo.png'); |
---|
114 | } |
---|
115 | |
---|
116 | #logo2 { |
---|
117 | text-align: center; |
---|
118 | float: left; |
---|
119 | width: 230px; |
---|
120 | height: 50px; |
---|
121 | line-height: 50px; |
---|
122 | color: #000; |
---|
123 | font-size: 36px; |
---|
124 | font-family: 'Segoe', sans-serif; |
---|
125 | } |
---|
126 | |
---|
127 | #menuBar { |
---|
128 | float: right; |
---|
129 | width: auto; |
---|
130 | height: 50px; |
---|
131 | } |
---|
132 | |
---|
133 | .menuButton { |
---|
134 | float: left; |
---|
135 | width: 75px; |
---|
136 | height: 30px; |
---|
137 | margin: 20px 2px 0 2px; |
---|
138 | background: #CFB970; |
---|
139 | background: -webkit-linear-gradient(top, #EDD68B 0%, #CFB970 100%); |
---|
140 | } |
---|
141 | |
---|
142 | |
---|
143 | |
---|
144 | |
---|
145 | #wrapper { |
---|
146 | width: 960px; |
---|
147 | margin: 0 auto; |
---|
148 | } |
---|
149 | |
---|
150 | #footerInfo { |
---|
151 | height: auto; |
---|
152 | width: auto; |
---|
153 | background: #508fd2; |
---|
154 | margin-top: 15px; |
---|
155 | } |
---|
156 | |
---|
157 | |
---|
158 | #content { |
---|
159 | padding: 10px 0; |
---|
160 | } |
---|
161 | |
---|
162 | |
---|
163 | .basePanel { |
---|
164 | width: 940px; |
---|
165 | height: 465px; |
---|
166 | background: #0000; |
---|
167 | border: 1px solid transparent; |
---|
168 | padding: 10px; |
---|
169 | box-shadow: 0; |
---|
170 | } |
---|
171 | |
---|
172 | .right1 { |
---|
173 | float: left; |
---|
174 | width: 230px; |
---|
175 | height: 465px; |
---|
176 | } |
---|
177 | |
---|
178 | .left3 { |
---|
179 | float: left; |
---|
180 | width: 700px; |
---|
181 | height: 465px; |
---|
182 | margin-right: 5px; |
---|
183 | } |
---|
184 | |
---|
185 | .leftContainer { |
---|
186 | margin-right: -5px; |
---|
187 | } |
---|
188 | |
---|
189 | .rightContainer { |
---|
190 | padding: 5px; |
---|
191 | } |
---|
192 | |
---|
193 | .tileAnimating { |
---|
194 | width: 230px; |
---|
195 | height: 230px; |
---|
196 | border: none; |
---|
197 | float: left; |
---|
198 | clear: none; |
---|
199 | margin-right: 5px; |
---|
200 | margin-bottom: 5px; |
---|
201 | background: #367ac3; |
---|
202 | } |
---|
203 | |
---|
204 | .tile { |
---|
205 | width: 230px; |
---|
206 | height: 230px; |
---|
207 | border: none; |
---|
208 | float: left; |
---|
209 | clear: none; |
---|
210 | margin-right: 5px; |
---|
211 | margin-bottom: 5px; |
---|
212 | background: #367ac3; |
---|
213 | color: #fff; |
---|
214 | |
---|
215 | background-image: linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%); |
---|
216 | background-image: -o-linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%); |
---|
217 | background-image: -moz-linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%); |
---|
218 | background-image: -webkit-linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%); |
---|
219 | background-image: -ms-linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%); |
---|
220 | |
---|
221 | background-image: -webkit-gradient( |
---|
222 | linear, |
---|
223 | left bottom, |
---|
224 | right top, |
---|
225 | color-stop(0.44, rgb(54,122,195)), |
---|
226 | color-stop(0.72, rgb(74,139,208)) |
---|
227 | ); |
---|
228 | |
---|
229 | |
---|
230 | } |
---|
231 | |
---|
232 | .staticTile { |
---|
233 | width: 230px; |
---|
234 | height: 230px; |
---|
235 | border: none; |
---|
236 | float: left; |
---|
237 | color: #fff; |
---|
238 | clear: none; |
---|
239 | margin-right: 5px; |
---|
240 | margin-bottom: 5px; |
---|
241 | background: #367ac3; |
---|
242 | } |
---|
243 | |
---|
244 | .doubleHeight { |
---|
245 | height: 465px; |
---|
246 | } |
---|
247 | |
---|
248 | .doubleWidth { |
---|
249 | width: 465px; |
---|
250 | } |
---|
251 | |
---|
252 | |
---|
253 | |
---|
254 | .tile:hover { |
---|
255 | background-color: #78abe2; |
---|
256 | background-image: linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%); |
---|
257 | background-image: -o-linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%); |
---|
258 | background-image: -moz-linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%); |
---|
259 | background-image: -webkit-linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%); |
---|
260 | background-image: -ms-linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%); |
---|
261 | |
---|
262 | background-image: -webkit-gradient( |
---|
263 | linear, |
---|
264 | left bottom, |
---|
265 | left top, |
---|
266 | color-stop(0.44, rgb(54,122,195)), |
---|
267 | color-stop(0.72, rgb(120,171,226)) |
---|
268 | ); |
---|
269 | } |
---|
270 | |
---|
271 | .tileText { |
---|
272 | font-family: Segoe, sans-serif; |
---|
273 | width: 220px; |
---|
274 | height: 30px; |
---|
275 | color: #fff; |
---|
276 | margin: 195px 5px 5px 5px; |
---|
277 | font-size: 25px; |
---|
278 | line-height: 30px; |
---|
279 | text-align: left; |
---|
280 | white-space: nowrap; |
---|
281 | -webkit-user-select: none; |
---|
282 | cursor: default; |
---|
283 | } |
---|
284 | |
---|
285 | .tileHeader { |
---|
286 | font-family: Segoe, sans-serif; |
---|
287 | width: 220px; |
---|
288 | height: 30px; |
---|
289 | color: #fff; |
---|
290 | margin: 5px 5px 5px 5px; |
---|
291 | font-size: 20px; |
---|
292 | line-height: 20px; |
---|
293 | text-align: left; |
---|
294 | white-space: nowrap; |
---|
295 | user-select: none; |
---|
296 | } |
---|
297 | |
---|
298 | |
---|
299 | #pageInfo { |
---|
300 | background: #508fd2; |
---|
301 | } |
---|
302 | |
---|
303 | .descriptionText { |
---|
304 | font-family: Segoe, sans-serif; |
---|
305 | color: #fff; |
---|
306 | font-size: 12px; |
---|
307 | text-align: left; |
---|
308 | white-space: wrap; |
---|
309 | |
---|
310 | } |
---|
311 | |
---|
312 | .descriptionTitle{ |
---|
313 | font-family: Segoe, sans-serif; |
---|
314 | color: #fff; |
---|
315 | font-size: 30px; |
---|
316 | margin-bottom: 7px; |
---|
317 | } |
---|
318 | |
---|
319 | #breadcrumbs{ |
---|
320 | line-height: 24px; |
---|
321 | width: 940px; |
---|
322 | margin: 0 auto; |
---|
323 | color: #fff; |
---|
324 | } |
---|
325 | |
---|
326 | #breadcrumbs a { |
---|
327 | color: #fff; |
---|
328 | text-decoration: none; |
---|
329 | } |
---|
330 | |
---|
331 | #breadcrumbs a:hover { |
---|
332 | color: #edd68b; |
---|
333 | } |
---|
334 | |
---|
335 | #breadcrumbs a.selected { |
---|
336 | font-weight: bold; |
---|
337 | text-decoration: underline; |
---|
338 | } |
---|
339 | |
---|
340 | .tileField { |
---|
341 | width: 224px; |
---|
342 | height: auto; |
---|
343 | margin: 0 3px; |
---|
344 | border: none; |
---|
345 | background: #367ac3; |
---|
346 | color: #fff; |
---|
347 | font-family: segoe, sans-serif; |
---|
348 | outline: none; |
---|
349 | } |
---|
350 | |
---|
351 | .multipleSelect { |
---|
352 | padding: 2px; |
---|
353 | height: 420px; |
---|
354 | } |
---|
355 | |
---|
356 | .controls { |
---|
357 | text-align: right; |
---|
358 | width: 220px; |
---|
359 | padding: 5px; |
---|
360 | } |
---|
361 | |
---|
362 | .doubleWidth .controls { |
---|
363 | width: 455px; |
---|
364 | } |
---|
365 | |
---|
366 | .smallButton { |
---|
367 | background: #00569b; |
---|
368 | border: none; |
---|
369 | color: #fff; |
---|
370 | font-family: segoe, sans-serif; |
---|
371 | font-size: 16px; |
---|
372 | padding: 5px; |
---|
373 | } |
---|
374 | |
---|
375 | .smallButton:hover { |
---|
376 | background: #0762a8; |
---|
377 | color: #edd68b; |
---|
378 | } |
---|
379 | |
---|
380 | .doubleHeight .content { |
---|
381 | height: 375px; |
---|
382 | width: 224px; |
---|
383 | padding: 3px; |
---|
384 | overflow-x: hidden; |
---|
385 | color: #fff; |
---|
386 | } |
---|
387 | |
---|
388 | .locked { |
---|
389 | overflow-y: hidden; |
---|
390 | } |
---|
391 | |
---|
392 | .doubleWidth .content { |
---|
393 | height: 375px; |
---|
394 | width: 224px; |
---|
395 | padding: 3px; |
---|
396 | overflow-x: hidden; |
---|
397 | overflow-y: auto; |
---|
398 | color: #fff; |
---|
399 | } |
---|
400 | |
---|
401 | .doubleHeight.doubleWidth .content { |
---|
402 | height: 375px; |
---|
403 | width: 459px;; |
---|
404 | padding: 3px; |
---|
405 | overflow-x: hidden; |
---|
406 | overflow-y: auto; |
---|
407 | color: #fff; |
---|
408 | } |
---|
409 | |
---|
410 | .shoppingCartItem { |
---|
411 | width: 224px; |
---|
412 | height: 18px; |
---|
413 | } |
---|
414 | |
---|
415 | .graphSelectionButtons { |
---|
416 | width: auto; |
---|
417 | height: 93px; |
---|
418 | } |
---|
419 | |
---|
420 | .graphSelectionButton { |
---|
421 | width: 75px; |
---|
422 | height: 93px; |
---|
423 | margin: 0 9px; |
---|
424 | padding: 10px; |
---|
425 | clear: none; |
---|
426 | float: left; |
---|
427 | } |
---|
428 | |
---|
429 | .graphSelectionButton:hover { |
---|
430 | background-color: #508fd2; |
---|
431 | } |
---|
432 | |
---|
433 | .graphSelectionButton:hover span { |
---|
434 | color: #edd68b; |
---|
435 | } |
---|
436 | |
---|
437 | .graphSelectionButton img { |
---|
438 | width: 75px; |
---|
439 | height: 75px; |
---|
440 | margin: 0; |
---|
441 | padding: 0; |
---|
442 | border: none; |
---|
443 | } |
---|
444 | |
---|
445 | .graphSelectionButton span { |
---|
446 | line-height: 18px; |
---|
447 | width: 100%; |
---|
448 | color: #fff; |
---|
449 | font-size: 14px; |
---|
450 | text-align: center; |
---|
451 | display: block; |
---|
452 | } |
---|
453 | |
---|
454 | #graphContainer { |
---|
455 | height: 250px; |
---|
456 | width: 459px; |
---|
457 | float: left; |
---|
458 | clear: both; |
---|
459 | overflow: hidden; |
---|
460 | } |
---|
461 | |
---|
462 | .fullOn.staticTile { |
---|
463 | width: 940px; |
---|
464 | min-height: 459px; |
---|
465 | height: auto; |
---|
466 | } |
---|
467 | |
---|
468 | .fullOn .content { |
---|
469 | padding: 3px; |
---|
470 | width: 934px; |
---|
471 | |
---|
472 | } |
---|