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

Last change on this file since 258 was 258, checked in by cartis, 13 years ago

Blauwe UI

File size: 3.9 KB
Line 
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
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.tile {
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:hover {
205    background: #EDD68B;
206}
207
208.tileText {
209    font-family: Segoe, sans-serif;
210    width: 220px;
211    height: 30px;
212    color: #fff;
213    margin: 195px 5px 5px 5px;
214    font-size: 30px;
215    line-height: 30px;
216    text-align: left;
217    white-space: nowrap;
218    user-select: none;
219}
220
221
222#pageInfo {
223    background: #508fd2;
224}
225
226.descriptionText {
227    font-family: Segoe, sans-serif;
228    color: #fff;
229    font-size: 12px;
230    text-align: left;
231    white-space: wrap;
232
233}
234
235.descriptionTitle{
236    font-family: Segoe, sans-serif;
237    color: #fff;
238    font-size: 30px;
239    margin-bottom: 7px;
240}
241
242.breadcrumbs{
243    float: left;
244    margin-top: 20px;
245    margin-bottom: -2px;
246    margin-left: 370px;
247
248}
249
250
251
Note: See TracBrowser for help on using the repository browser.