source: Dev/branches/Cartis/Tiles preview/css/tile1.css @ 259

Last change on this file since 259 was 259, checked in by tjcschipper, 13 years ago

Metro interface, selector werkt bijna! (Alleen move to dashboard nog niet, rest is prima (en de icons zijn lelijk).

File size: 6.6 KB
RevLine 
[258]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
14root {
15    display: block;
16}
17/* http://meyerweb.com/eric/tools/css/reset/
18   v2.0 | 20110126
19   License: none (public domain)
20*/
21
22html, body, div, span, applet, object, iframe,
23h1, h2, h3, h4, h5, h6, p, blockquote, pre,
24a, abbr, acronym, address, big, cite, code,
25del, dfn, em, img, ins, kbd, q, s, samp,
26small, strike, strong, sub, sup, tt, var,
27b, u, i, center,
28dl, dt, dd, ol, ul, li,
29fieldset, form, label, legend,
30table, caption, tbody, tfoot, thead, tr, th, td,
31article, aside, canvas, details, embed,
32figure, figcaption, footer, header, hgroup,
33menu, nav, output, ruby, section, summary,
34time, 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 */
43article, aside, details, figcaption, figure,
44footer, header, hgroup, menu, nav, section {
45    display: block;
46}
47body {
48    line-height: 1;
49}
50ol, ul {
51    list-style: none;
52}
53blockquote, q {
54    quotes: none;
55}
56blockquote:before, blockquote:after,
57q:before, q:after {
58    content: '';
59    content: none;
60}
61table {
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
78html {
79    font-family: 'Segoe', sans-serif;
80    font-size: 14px;
81    color: #000;
82    background: #0000;
83}
84
85#header {
86    width: 100%;
87    height: 95px;
88    margin-bottom: 20px;
89}
90
91#upperBar {
92    height: 68px;
93    background: #508fd2;
94}
95
96#lowerBar {
97    height: 20px;
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: #fff;
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
[259]163.basePanel {
[258]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
[259]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
[258]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;
[259]213    background-image: linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%);
214    background-image: -o-linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%);
215    background-image: -moz-linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%);
216    background-image: -webkit-linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%);
217    background-image: -ms-linear-gradient(left bottom, rgb(54,122,195) 44%, rgb(74,139,208) 72%);
218
219    background-image: -webkit-gradient(
220        linear,
221        left bottom,
222        right top,
223        color-stop(0.44, rgb(54,122,195)),
224        color-stop(0.72, rgb(74,139,208))
225        );
[258]226}
227
[259]228.doubleHeight {
229    height: 465px;
230}
231
232.staticTile {
233    width: 230px;
234    /*height: 230px;*/
235    border: none;
236    float: left;
237    clear: none;
238    margin-right: 5px;
239    margin-bottom: 5px;
240    background: #367ac3;
241   
242}
243
[258]244.tile:hover {
[259]245    background-color: #78abe2;
246    background-image: linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%);
247    background-image: -o-linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%);
248    background-image: -moz-linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%);
249    background-image: -webkit-linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%);
250    background-image: -ms-linear-gradient(bottom, rgb(54,122,195) 44%, rgb(120,171,226) 72%);
251
252    background-image: -webkit-gradient(
253        linear,
254        left bottom,
255        left top,
256        color-stop(0.44, rgb(54,122,195)),
257        color-stop(0.72, rgb(120,171,226))
258        );
[258]259}
260
261.tileText {
262    font-family: Segoe, sans-serif;
263    width: 220px;
264    height: 30px;
265    color: #fff;
266    margin: 195px 5px 5px 5px;
[259]267    font-size: 25px;
[258]268    line-height: 30px;
269    text-align: left;
270    white-space: nowrap;
271    user-select: none;
272}
273
[259]274.tileHeader {
275    font-family: Segoe, sans-serif;
276    width: 220px;
277    height: 30px;
278    color: #fff;
279    margin: 5px 5px 5px 5px;
280    font-size: 20px;
281    line-height: 20px;
282    text-align: left;
283    white-space: nowrap;
284    user-select: none;
285}
[258]286
[259]287
[258]288#pageInfo {
289    background: #508fd2;
290}
291
292.descriptionText {
293    font-family: Segoe, sans-serif;
294    color: #fff;
295    font-size: 12px;
296    text-align: left;
297    white-space: wrap;
298
299}
300
301.descriptionTitle{
302    font-family: Segoe, sans-serif;
303    color: #fff;
304    font-size: 30px;
305    margin-bottom: 7px;
306}
307
308.breadcrumbs{
309    float: left;
310    margin-top: 20px;
311    margin-bottom: -2px;
312    margin-left: 370px;
313
314}
315
[259]316.tileField {
317    width: 224px;
318    height: auto;
319    margin: 0 3px;
320    border: none;
321    background: #367ac3;
322    color: #fff;
323    font-family: segoe, sans-serif;
324    outline: none;
325}
[258]326
[259]327.multipleSelect {
328    padding: 2px;
329    height: 420px;
330}
[258]331
[259]332.controls {
333    text-align: right;
334    width: 220px;
335    padding: 5px;
336}
337
338.smallButton {
339    background: #00569b;
340    border: none;
341    color: #fff;
342    font-family: segoe, sans-serif;
343    font-size: 16px;
344    padding: 5px;
345}
346
347.smallButton:hover {
348    background: #0762a8;
349}
350
351.doubleHeight .content {
352    height: 375px;
353    width: 224px;
354    padding: 3px;
355    overflow-x: hidden;
356    overflow-y: auto;
357    color: #fff;
358}
359
360.shoppingCartItem {
361    width: 224px;
362    height: 16px;
363}
Note: See TracBrowser for help on using the repository browser.