Centers AX letter's text.
[platal.git] / htdocs / css / base.css
1 /***************************************************************************
2 * Copyright (C) 2003-2011 Polytechnique.org *
3 * http://opensource.polytechnique.org/ *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the Free Software *
17 * Foundation, Inc., *
18 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
19 ***************************************************************************/
20
21 .ac_results {
22 background-color: window;
23 border: 1px solid;
24 overflow: hidden;
25 padding: 0px;
26 }
27
28 .ac_results ul {
29 padding:0px;
30 margin:0px;
31 width:100%;
32 }
33
34 .ac_results li {
35 display:block;
36 padding: 2px;
37 cursor:pointer;
38 font-size: 90%;
39 }
40
41 .ac_results iframe {
42 display:none;/*sorry for IE5*/
43 display/**/:block;/*sorry for IE5*/
44 position:absolute;
45 top:0;
46 left:0;
47 z-index:-1;
48 filter:mask();
49 width:3000px;
50 height:3000px;
51 }
52
53 .ac_over {
54 background: highlight;
55 color: highlighttext;
56 }
57
58 .ac_loading {
59 background: window url(../images/wait.gif) no-repeat scroll right center;
60 }
61
62 .ac_loading_left {
63 background: window url(../images/wait.gif) no-repeat scroll left center;
64 }
65
66 .hidden_valid {
67 background-color: #bfb;
68 }
69
70 .pem {
71 display: none;
72 }
73
74 .ui-tabs-hide { display: none; }
75
76 .ui-icon {
77 width: 16px;
78 height: 16px;
79 }
80
81 .ui-datepicker {
82 background: #ffffff;
83 color: #000000;
84 position: absolute;
85 }
86
87 .ui-datepicker a {
88 color: black;
89 text-decoration: none;
90 text-align: center;
91 }
92
93 .ui-datepicker-header {
94 padding: 2px;
95 margin: 1px;
96 background: #777;
97 border: 1px solid;
98 border-color: #333;
99 }
100
101 .ui-datepicker-title {
102 text-align: center;
103 height: 19px;
104 }
105
106 .ui-datepicker-prev {
107 background: #777 url('/images/icons/resultset_previous.gif');
108 position: absolute;
109 width: 16px;
110 height: 16px;
111 top: 4px;
112 left: 4px;
113 outline: none;
114 display: block;
115 }
116
117 .ui-datepicker-next {
118 background: #777 url('/images/icons/resultset_next.gif');
119 position: absolute;
120 width: 16px;
121 height: 16px;
122 top: 4px;
123 right: 4px;
124 outline: none;
125 display: block;
126 }
127
128 .ui-datepicker-next span, .ui-datepicker-prev span {
129 display: block;
130 position: absolute;
131 text-indent: -99999px;
132 overflow: hidden;
133 }
134
135 .ui-datepicker-week-end {
136 background-color: #eee;
137 }
138
139 .ui-datepicker-unselectable {
140 color: #777;
141 }
142
143 /* print */
144 @media print {
145 #body-menu, #body-top, #body-logo, #body-bottom, #dev, .backtrace, .xdx, .noprint
146 { display:none; }
147
148 table#body, img { border:0px; }
149 }
150
151 /* vim: set et ts=4 sts=4 sw=4: */