source: main/waeup.sirp/trunk/src/waeup/sirp/browser/static/yuiapp.css @ 6186

Last change on this file since 6186 was 6186, checked in by uli, 13 years ago

cosmetics.

File size: 4.8 KB
RevLine 
[4593]1html, body { background-color:#f0f0ee; color:#222; }
[6186]2
[4593]3/* Make the page full bleed */
4#doc3 { margin:0; }
[6186]5
[4593]6/* Header */
7#hd { padding:1.2em 1.5em 0 1.5em; background-color:#7a1818; }
8h1 { font-size:230%; color:#fff; }
[6186]9
[4593]10#navigation { margin-top:1.5em; background-color:#262626; height:1%; }
11#navigation li { float:left; display:inline; }
12#navigation li a { display:block; color:#fff; text-decoration:none; }
13#navigation li a:hover { text-decoration:underline; }
[6186]14
[4593]15#primary-navigation li a { font-size:116%; padding:0.4em 1em; }
16#primary-navigation li.active a { background-color:#f0f0ee; color:#000; }
[6186]17
[4593]18#user-navigation { float:right; }
19#user-navigation li a { font-size:93%; padding:0.5em 1em; }
[6186]20
[4593]21/* Body */
22#bd { padding:1.5em; }
23h2 { font-size:153.9%; margin-bottom:0.5em; }
24h3 { font-size:153.9%; margin-bottom:0.5em; }
[6186]25
[4593]26/* Basic block */
27.block { margin-bottom:1.5em; }
[6186]28.block .hd { background-color:#7a1818; padding:0.7em 1em; color:#fff;
29             border-bottom:10px solid #262626; }
[4593]30.block .hd h2, .block .hd h3 { font-size:100%; margin-bottom:0; }
31.block .bd { padding:1em; background-color:#fff; }
[6031]32.block .bd h1 { color:#7a1818; }
[4593]33.block .bd h2 { color:#7a1818; }
34.block .bd h3 { color:#7a1818; }
[6186]35
[4593]36/* Extend block with tabs */
37.tabs .hd { padding:0; }
38.tabs .hd ul { height:1%; }
39.tabs .hd ul li { float:left; }
[6186]40.tabs .hd ul li a { display:block; color:#fff; text-decoration:none;
41                    padding:0.5em 1em; }
[4593]42.tabs .hd ul li a:hover { background-color:#470E0E; }
[6186]43.tabs .hd ul li.active a { background-color:#262626 !important; color:#fff;
44                           text-decoration:none; } /* important! fixes IE cascade issue */
45.tabs .hd h2, .tabs .hd h3 { position:absolute;
46                             margin-left:-5000px; } /* Hidden SEO Header if needed */
47
[4593]48/* Extend tab block with spaced tabs */
49.spaces .hd { background-color:transparent; }
50.spaces .hd ul li { background-color:#7a1818; margin-right:0.1em; }
[6186]51
[4593]52/* Extend block and header to have rounded corners */
53.rounded .hd,
54.rounded .hd ul li,
55.rounded .hd ul li a,
56.rounded #navigation,
57.rounded #navigation ul li,
58.rounded #navigation ul li a {
59    -moz-border-radius-topright:7px;
60    -moz-border-radius-topleft:7px;
61    -webkit-border-top-right-radius:7px;
62    -webkit-border-top-left-radius:7px;
63}
[6186]64
[4593]65/* Style the horizontal rules inside .block */
66.block hr { background-color:#f0f0ee; color:#f0f0ee; height:1px; border:0; }
[6186]67
[4593]68/* Tables */
69table { width:100%; margin-bottom:2em; }
70table td, table th { padding:0.5em; }
71table thead { background-color:#262626; color:#fff; font-weight:bold; }
72table thead a { text-decoration:none; color:#fff; }
73table thead a:hover { text-decoration:underline; }
74table tbody a { text-decoration:underline; }
[6186]75
[4593]76table.zebra tbody tr:nth-child(even) {background: #eee}
77table.zebra tbody tr:nth-child(odd) {background: #fff}
[6186]78
79
80
[4593]81/* Pager control*/
82ul.pager { text-align:right; }
83ul.pager li { display:inline; }
[6186]84ul.pager li a { padding:0.1em 0.3em; margin-right:0.3em; border:1px solid #000;
85                text-decoration:none; color:#000; }
[4593]86ul.pager li.active a, ul.pager li a:hover { background-color:#000; color:#fff; }
[6186]87
88
89
[4593]90/* Forms */
91form label { font-weight:bold; }
92form label span { font-weight:normal; color:#f00; font-size:85%; }
93form span.info { font-style:italic; color:#aaa; font-size:85%; }
94form .text { display:block; width:99%; border:1px solid #aaa; padding:0.3em; }
95form .column { width:48%; }
96form .left { float:left; }
97form .right { float:right; }
[6186]98
[4593]99/* Messages */
100.alert { padding:0.5em; text-align:center; }
101.error { border:2px solid #fbb; background-color:#fdd; }
102.warning { border:2px solid #fffaaa; background-color:#ffc; }
103.notice { border:2px solid #1fdf00; background-color:#bbffb6; }
[6186]104
[4593]105/* Lists */
106ol.list, ul.list, dl.list { margin-left:2em; margin-bottom:1em; }
107ol.list li { list-style:decimal outside; }
108ul.list li { list-style:disc outside; }
109dl.list dd { margin-left:1em; }
[6186]110
[4593]111ul.biglist { margin-bottom:1em; }
[6186]112ul.biglist li { margin-top:-1px; border:1px solid #f0f0ee;
113                border-width:1px 0 1px 0; }
114ul.biglist li a { display:block; padding:0.5em 0; text-decoration:none;
115                  color:#000; }
[4593]116ul.biglist li a:hover { text-decoration:underline; }
[6186]117
[4593]118/* Footer */
119#ft { text-align:center; font-size:85%; padding:0.5em 1em; color:#262626; }
[6186]120
[4593]121/* Generics */
122p { margin-bottom:1em; }
123a { color:#7a1818; }
124strong { font-weight:bold; }
125em { font-style:italic; }
126abbr, acronym { border-bottom:1px dotted #000; cursor:help; }
[6186]127
[4593]128.small { font-size:85%; }
129.gray { color:#999; }
130.highlight { background-color:#ffffcc; }
131.clear { clear:both; }
132.text-left { text-align:left; }
133.text-right { text-align:right; }
134.text-center { text-align:center; }
[5840]135
136/* datepicker */
137.ui-datepicker { background-color:#e0e0dd; }
138.ui-datepicker-title { font-weight: bold;  }
[5849]139
140/* use monospace font in textearea-based widgets */
141div.widget textarea { font-family: monospace; }
Note: See TracBrowser for help on using the repository browser.