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

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

Blauwe UI

File size: 3.7 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: Gill Sans, Gill Sans MT, sans-serif;
80    font-size: 14px;
81    color: #000;
82    background: #333;
83}
84
85#header {
86    width: 100%;
87    height: 75px;
88    margin-bottom: 20px;
89}
90
91#upperBar {
92    height: 50px;
93    background: #333;
94}
95
96#lowerBar {
97    height: 25px;
98    background: #555;
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: 'Arial Narrow', 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#content {
151    padding: 10px 0;
152}
153
154
155
156
157
158
159#basePanel {
160    width: 940px;
161    height: 465px;
162    background: #555;
163    border: 1px solid transparent;
164    padding: 10px;
165    /*box-shadow: 0 0 25px #55665E;*/
166}
167
168.right1 {
169    float: left;
170    width: 230px;
171    height: 465px;
172}
173
174.left3 {
175    float: left;
176    width: 700px;
177    height: 465px;
178    margin-right: 5px;
179}
180
181.leftContainer {
182    margin-right: -5px;
183}
184
185.rightContainer {
186    padding: 5px;
187}
188
189.tile {
190    width: 230px;
191    height: 230px;
192    border: none;
193    float: left;
194    clear: none;
195    margin-right: 5px;
196    margin-bottom: 5px;
197    background: #144F4F;
198    background: -webkit-linear-gradient(top, #366F6F 0%, #144F4F 100%);
199}
200
201.tile:hover {
202    background: #366F6F;
203}
204
205.tileText {
206    font-family: 'Arial Narrow', sans-serif;
207    width: 220px;
208    height: 30px;
209    color: #ffffd0;
210    margin: 195px 5px 5px 5px;
211    font-size: 30px;
212    line-height: 30px;
213    text-align: right;
214    white-space: nowrap;
215    user-select: none;
216}
217
218
219#pageInfo {
220    background: #EEFFD0;
221    background: -webkit-linear-gradient(top, #ffffe2 0%, #EEFFD0 100%);
222}
223
224
225
226
Note: See TracBrowser for help on using the repository browser.