source: branches/TaskRewrite/src/web-app/css/main.css @ 84

Last change on this file since 84 was 84, checked in by gav, 15 years ago

Start creating 'Detail views for Task. Add to BootStrap?. Small change to css.

File size: 6.0 KB
Line 
1html * {
2    margin: 0;
3    /*padding: 0; SELECT NOT DISPLAYED CORRECTLY IN FIREFOX */
4
5}
6
7/* GENERAL */
8
9.spinner {
10    padding: 5px;
11    position: absolute;
12    right: 0;
13}
14
15body {
16    text-align: center; 
17    width: 980px
18    background: #fff;
19    color: #333;
20    font: 11px verdana, arial, helvetica, sans-serif;
21    background: transparent url("../images/brushed_metal.png") repeat fixed center;
22}
23
24#wrapper {
25  margin: 0 auto;
26  padding: 0;
27  width: 1024px;
28}
29
30#top {
31  background: url("../images/topBg.png") no-repeat scroll center;
32  width: 1020px;
33  height: 44px;
34}
35
36#content {
37  padding: 0px 20px 20px;
38  background: url("../images/Contentbg.png") repeat-y scroll center;
39  width: 980px;
40}
41
42#Header {
43  background: transparent url("../images/logo.png") no-repeat scroll center;
44  width: 980px;
45  height: 160px;
46}
47#HeaderLink{
48  display: block;
49  width: 650px;
50  height: 160px;
51}
52
53a:link, a:visited, a:hover {
54    color: #666;
55    font-weight: bold;
56    text-decoration: none;
57}
58
59h1 {
60    color: #006dba;
61    font-weight: normal;
62    font-size: 16px;
63    margin: 0 0 .3em 0;
64}
65
66ul {
67    padding-left: 15px;
68}
69
70input, select, textarea {
71    background-color: #fcfcfc;
72    border: 1px solid #ccc;
73    font: 11px verdana, arial, helvetica, sans-serif;
74    margin: 2px 0;
75    padding: 2px 4px;
76}
77select {
78   padding: 2px 2px 2px 0;
79}
80textarea {
81        width: 250px;
82        height: 150px;
83        vertical-align: top;
84}
85
86input:focus, select:focus, textarea:focus {
87    border: 1px solid #b2d1ff;
88}
89
90.body {
91    padding: 0px 20px 20px;
92    background: url("../images/Contentbg.png") repeat-y scroll center;
93    height: 100%;
94}
95
96/* Login/out and Admin*/
97
98.appcontrol {
99    text-align: right;
100    padding: 5px 160px 5px 5px
101}
102
103.appcontrolButton {
104    font-size: 10px;
105    padding: 5px 5px;
106}
107
108/* NAVIGATION MENU */
109
110.nav {
111    text-align: centre;
112    background: url("../images/linkPanel_long.png") top no-repeat;
113    /*border: 1px solid #ccc;
114    border-style: solid none solid none;*/
115    padding: 15px 0px 0px 0px;
116    width: 980px;
117    height: 40px;
118}
119
120/*.nav a{
121    background: url("../images/linkPanel.png") no-repeat top;
122    display: inline-block;
123    width: 140px;
124    height: 40px;
125    text-decoration: none;
126}*/
127
128.menuButton {
129    font-size: 10px;
130    padding: 0 5px;
131}
132.menuButton a {
133    color: #333;
134    padding: 14px 25px;
135}
136.menuButton a.home {
137    /*background: url(../images/skin/house.png) center left no-repeat;*/
138    color: #333;
139    /*padding: 25px;*/
140}
141.menuButton a.list {
142    /*background: url(../images/skin/database_table.png) center left no-repeat;*/
143    color: #333;
144    /*padding-left: 25px;*/
145}
146.menuButton a.create {
147    /*background: url(../images/skin/database_add.png) center left no-repeat;*/
148    color: #333;
149    /*padding-left: 25px;*/
150}
151
152/* MESSAGES AND ERRORS */
153
154.message {
155    background: #f3f8fc url(../images/skin/information.png) 8px 50% no-repeat;
156    border: 1px solid #b2d1ff;
157    color: #006dba;
158    margin: 10px 0 5px 0;
159    padding: 5px 5px 5px 0px
160}
161
162div.errors {
163    background: #fff3f3;
164    border: 1px solid red;
165    color: #cc0000;
166    margin: 10px 0 5px 0;
167    padding: 5px 0 5px 0;
168}
169div.errors ul {
170    list-style: none;
171    padding: 0;
172}
173div.errors li {
174        background: url(../images/skin/exclamation.png) 8px 0% no-repeat;
175    line-height: 16px;
176    padding-left: 30px;
177}
178
179td.errors select {
180    border: 1px solid red;
181}
182td.errors input {
183    border: 1px solid red;
184}
185
186/* TABLES */
187
188table {
189    border: 1px solid #ccc;
190    width: 100%
191}
192tr {
193    border: 0;
194}
195td, th {
196    font: 11px verdana, arial, helvetica, sans-serif;
197    line-height: 12px;
198    padding: 5px 6px;
199    text-align: left;
200    vertical-align: top;
201}
202th {
203    background: #fff url(../images/skin/shadow.jpg);
204    color: #666;
205    font-size: 11px;
206    font-weight: bold;
207    line-height: 17px;
208    padding: 2px 6px;
209}
210th a:link, th a:visited, th a:hover {
211    color: #333;
212    display: block;
213    font-size: 10px;
214    text-decoration: none;
215    width: 100%;
216}
217th.asc a, th.desc a {
218    background-position: right;
219    background-repeat: no-repeat;
220}
221th.asc a {
222    background-image: url(../images/skin/sorted_asc.gif);
223}
224th.desc a {
225    background-image: url(../images/skin/sorted_desc.gif);
226}
227
228.odd {
229    background: #f7f7f7;
230}
231.even {
232    background: #fff;
233}
234
235/* LIST */
236
237.list table {
238    border-collapse: collapse;
239}
240.list th, .list td {
241    border-left: 1px solid #ddd;
242}
243.list th:hover, .list tr:hover {
244    background: #b2d1ff;
245}
246
247/* PAGINATION */
248
249.paginateButtons {
250    background: #fff url(../images/skin/shadow.jpg) bottom repeat-x;
251    border: 1px solid #ccc;
252    border-top: 0;
253    color: #666;
254    font-size: 10px;
255    overflow: hidden;
256    padding: 10px 3px;
257}
258.paginateButtons a {
259    background: #fff;
260    border: 1px solid #ccc;
261    border-color: #ccc #aaa #aaa #ccc;
262    color: #666;
263    margin: 0 3px;
264    padding: 2px 6px;
265}
266.paginateButtons span {
267    padding: 2px 3px;
268}
269
270/* DIALOG */
271
272.dialog table {
273    padding: 5px 0;
274}
275
276.prop {
277    padding: 5px;
278}
279.prop .name {
280    text-align: left;
281    width: 15%;
282    white-space: nowrap;
283}
284.prop .value {
285    text-align: left;
286    width: 85%;
287}
288
289/* ACTION BUTTONS */
290
291.buttons {
292    background: #fff url(../images/skin/shadow.jpg) bottom repeat-x;
293    border: 1px solid #ccc;
294    color: #666;
295    font-size: 10px;
296    margin-top: -1px;
297    margin-bottom: 5px;
298    overflow: hidden;
299    padding: 0;
300}
301
302.buttons input {
303    background: #fff;
304    border: 0;
305    color: #333;
306    cursor: pointer;
307    font-size: 10px;
308    font-weight: bold;
309    margin-left: 3px;
310    overflow: visible;
311    padding: 2px 6px;
312}
313.buttons input.delete {
314    background: transparent url(../images/skin/database_delete.png) 5px 50% no-repeat;
315    padding-left: 28px;
316}
317.buttons input.edit {
318    background: transparent url(../images/skin/database_edit.png) 5px 50% no-repeat;
319    padding-left: 28px;
320}
321.buttons input.save {
322    background: transparent url(../images/skin/database_save.png) 5px 50% no-repeat;
323    padding-left: 28px;
324}
325
326#bottom {
327  background: url("../images/bottomBg.png") no-repeat scroll center;
328  width: 1020px;
329  height: 100px;
330}
Note: See TracBrowser for help on using the repository browser.