source: trunk/src/web-app/css/public.css @ 43

Last change on this file since 43 was 43, checked in by tuxta, 15 years ago

1st gui draft complete, added the bottom section to the content area

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