root/galaxy-central/static/light_hatched_style/green/base.css @ 2

リビジョン 2, 3.9 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

行番号 
1body
2{
3    font: 75% verdana, "Bitstream Vera Sans", geneva, arial, helvetica, helve, sans-serif;
4    background: white;
5    color: #303030;
6    background-image: url(/static/style/base_bg.png);
7    background-repeat: repeat-x;
8    background-position: top;
9    margin: 10px;
10    margin-right: 15px;
11    margin-left: 15px;
12}
13
14a:link, a:visited, a:active
15{
16    color: #303030;
17}
18
19h1, h2, h3, h4
20{
21    color: #025838;
22    /*text-shadow: #bbb 2px 2px 1px;*/
23}
24
25hr
26{
27    border: none;
28    border-bottom: dotted #303030 1px;
29}
30
31div.toolForm
32{
33    margin-right: -5px;
34    margin-left: -5px;
35}
36
37div.toolFormTitle
38{
39  background: #ebd9b2;
40  background-image: url(/static/style/form_title_bg.png);
41  background-repeat: repeat-x;
42  background-position: top; 
43  border-top: solid #d8b365 1px;
44  border-bottom: solid #d8b365 1px;
45  font-weight: bold;
46  padding: 5px;
47}
48
49div.toolParamHelp
50{
51  font-style: italic;
52}
53
54div.toolFormBody
55{
56  background: white;
57  border-bottom: solid #d8b365 1px;
58  padding: 5px;
59}
60
61div.toolHelp
62{
63}
64
65div.toolHelpBody
66{
67}
68
69select
70{
71    max-width: 300px;
72}
73
74.errormessage, .warningmessage, .donemessage, .infomessage
75{
76    padding: 10px;
77    padding-left: 52px;
78    min-height: 32px;
79    border-top: 1px solid #AA6666;
80    border-bottom: 1px solid #AA6666;
81    background-color: #FFCCCC;
82    background-image: url(/static/style/error_large.png);
83    background-repeat: no-repeat;
84    background-position: 10px 10px;
85}
86
87.warningmessage
88{
89    background-image: url(/static/style/warn_large.png);
90    border-color: #AAAA66;
91    background-color: #FFFFCC;
92}
93
94.donemessage
95{
96    background-image: url(/static/style/ok_large.png);
97    border-color: #66AA66;
98    background-color: #CCFFCC;
99}
100
101.infomessage
102{
103    background-image: url(/static/style/info_large.png);
104    border-color: #6666AA;
105    background-color: #CCCCFF;
106}
107
108.errormessagesmall, .warningmessagesmall, .donemessagesmall, .infomessagesmall
109{
110    padding: 5px;
111    padding-left: 25px;
112    min-height: 25px;
113    border-top: 1px solid #AA6666;
114    border-bottom: 1px solid #AA6666;
115    background-color: #FFCCCC;
116    background-image: url(/static/style/error_small.png);
117    background-repeat: no-repeat;
118    background-position: 5px 5px;
119}
120
121.warningmessagesmall
122{
123    background-image: url(/static/style/warn_small.png);
124    border-color: #AAAA66;
125    background-color: #FFFFCC;
126}
127
128.donemessagesmall
129{
130    background-image: url(/static/style/ok_small.png);
131    border-color: #66AA66;
132    background-color: #CCFFCC;
133}
134
135.infomessagesmall
136{
137    background-image: url(/static/style/info_small.png);
138    border-color: #6666AA;
139    background-color: #CCCCFF;
140}
141
142.errormark, .warningmark, .donemark, .infomark, .ok_bgr, .err_bgr
143{
144    padding-left: 20px;
145    min-height: 15px;
146    background: url(/static/style/error_small.png) no-repeat;
147}
148
149.warningmark
150{
151    background-image: url(/static/style/warn_small.png);
152}
153
154.donemark
155{
156    background-image: url(/static/style/ok_small.png);
157}
158
159.infomark, .ok_bgr
160{
161    background-image: url(/static/style/info_small.png);
162}
163
164table.colored td
165{
166    padding: 5px;
167}
168
169table.colored tr.header
170{
171  background: #ebb2d9;
172  font-weight: bold;
173}
174
175table.colored tr
176{
177  background: white;
178}
179
180div.debug
181{
182    margin: 10px;
183    padding: 5px;
184    background: #FFFF99;
185    border: solid #FFFF33 1px;
186    color: black;
187}
188   
189#footer {
190  position: fixed;
191  background: #025838;
192  width: 100%;
193  left: 0px;
194  bottom: 0px;
195  color: white;
196  z-index:10000;
197  opacity:0.9;
198  filter:alpha(opacity:90);
199}
200
201#footer a {
202    color: white;
203}
204
205.footerheader
206{
207  padding: 5px;
208  text-align:center;
209  background-image: url(/static/style/footer_title_bg.png);
210  background-position: bottom;
211}
212
213.footermenu
214{
215  /*border-top: solid white 1px; */
216}
217
218.footermenuitem
219{
220    margin-top: 5px;
221    margin-bottom: 5px;
222    margin-right: 5px;
223    margin-left: 25px;
224    display: list-item;
225    list-style: square outside;
226}
227
228.footermenumessage
229{
230    margin: 5px;
231}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。