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

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

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

File size: 5.6 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: 220px;
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    padding-top: 7px;
89    /*background: #fff url(../images/skin/shadow.jpg) bottom repeat-x;*/
90    /*border: 1px solid #ccc;*/
91    /*border-style: solid none solid none; */
92    margin-top: 5px;
93    text-align: center;
94    /* padding: 7px 12px; */
95}
96
97.nav a{
98    background: url("../images/linkPanel.png") no-repeat top;
99    display: inline-block;
100    width: 140px;
101    height: 40px;
102    /*text-decoration: none;*/
103}
104
105.menuButton {
106    font-size: 10px;
107    padding: 0 5px;
108}
109.menuButton a {
110    color: #333;
111    padding: 14px 25px;
112}
113.menuButton a.home {
114    /*background: url(../images/skin/house.png) center left no-repeat;*/
115    color: #333;
116    /*padding: 25px;*/
117}
118.menuButton a.list {
119    /*background: url(../images/skin/database_table.png) center left no-repeat;*/
120    color: #333;
121    /*padding-left: 25px;*/
122}
123.menuButton a.create {
124    /*background: url(../images/skin/database_add.png) center left no-repeat;*/
125    color: #333;
126    /*padding-left: 25px;*/
127}
128
129/* MESSAGES AND ERRORS */
130
131.message {
132    background: #f3f8fc url(../images/skin/information.png) 8px 50% no-repeat;
133    border: 1px solid #b2d1ff;
134    color: #006dba;
135    margin: 10px 0 5px 0;
136    padding: 5px 5px 5px 30px
137}
138
139div.errors {
140    background: #fff3f3;
141    border: 1px solid red;
142    color: #cc0000;
143    margin: 10px 0 5px 0;
144    padding: 5px 0 5px 0;
145}
146div.errors ul {
147    list-style: none;
148    padding: 0;
149}
150div.errors li {
151        background: url(../images/skin/exclamation.png) 8px 0% no-repeat;
152    line-height: 16px;
153    padding-left: 30px;
154}
155
156td.errors select {
157    border: 1px solid red;
158}
159td.errors input {
160    border: 1px solid red;
161}
162
163/* TABLES */
164
165table {
166    border: 1px solid #ccc;
167    width: 100%
168}
169tr {
170    border: 0;
171}
172td, th {
173    font: 11px verdana, arial, helvetica, sans-serif;
174    line-height: 12px;
175    padding: 5px 6px;
176    text-align: left;
177    vertical-align: top;
178}
179th {
180    background: #fff url(../images/skin/shadow.jpg);
181    color: #666;
182    font-size: 11px;
183    font-weight: bold;
184    line-height: 17px;
185    padding: 2px 6px;
186}
187th a:link, th a:visited, th a:hover {
188    color: #333;
189    display: block;
190    font-size: 10px;
191    text-decoration: none;
192    width: 100%;
193}
194th.asc a, th.desc a {
195    background-position: right;
196    background-repeat: no-repeat;
197}
198th.asc a {
199    background-image: url(../images/skin/sorted_asc.gif);
200}
201th.desc a {
202    background-image: url(../images/skin/sorted_desc.gif);
203}
204
205.odd {
206    background: #f7f7f7;
207}
208.even {
209    background: #fff;
210}
211
212/* LIST */
213
214.list table {
215    border-collapse: collapse;
216}
217.list th, .list td {
218    border-left: 1px solid #ddd;
219}
220.list th:hover, .list tr:hover {
221    background: #b2d1ff;
222}
223
224/* PAGINATION */
225
226.paginateButtons {
227    background: #fff url(../images/skin/shadow.jpg) bottom repeat-x;
228    border: 1px solid #ccc;
229    border-top: 0;
230    color: #666;
231    font-size: 10px;
232    overflow: hidden;
233    padding: 10px 3px;
234}
235.paginateButtons a {
236    background: #fff;
237    border: 1px solid #ccc;
238    border-color: #ccc #aaa #aaa #ccc;
239    color: #666;
240    margin: 0 3px;
241    padding: 2px 6px;
242}
243.paginateButtons span {
244    padding: 2px 3px;
245}
246
247/* DIALOG */
248
249.dialog table {
250    padding: 5px 0;
251}
252
253.prop {
254    padding: 5px;
255}
256.prop .name {
257    text-align: left;
258    width: 15%;
259    white-space: nowrap;
260}
261.prop .value {
262    text-align: left;
263    width: 85%;
264}
265
266/* ACTION BUTTONS */
267
268.buttons {
269    background: #fff url(../images/skin/shadow.jpg) bottom repeat-x;
270    border: 1px solid #ccc;
271    color: #666;
272    font-size: 10px;
273    margin-top: 5px;
274    overflow: hidden;
275    padding: 0;
276}
277
278.buttons input {
279    background: #fff;
280    border: 0;
281    color: #333;
282    cursor: pointer;
283    font-size: 10px;
284    font-weight: bold;
285    margin-left: 3px;
286    overflow: visible;
287    padding: 2px 6px;
288}
289.buttons input.delete {
290    background: transparent url(../images/skin/database_delete.png) 5px 50% no-repeat;
291    padding-left: 28px;
292}
293.buttons input.edit {
294    background: transparent url(../images/skin/database_edit.png) 5px 50% no-repeat;
295    padding-left: 28px;
296}
297.buttons input.save {
298    background: transparent url(../images/skin/database_save.png) 5px 50% no-repeat;
299    padding-left: 28px;
300}
301
302#bottom {
303  background: url("../images/bottomBg.png") no-repeat scroll center;
304  width: 1020px;
305  height: 100px;
306}
Note: See TracBrowser for help on using the repository browser.