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

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

Fix page length

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