root/galaxy-central/static/help.css @ 2

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

import galaxy-central

行番号 
1body
2{
3    margin: 0;
4    padding: 0;
5    border: 0;
6    font: smaller verdana, "Bitstream Vera Sans", geneva, arial, helvetica, helve, sans-serif;
7    background: #3690c0;
8
9}
10
11body.toolMenuPage
12{
13    background: #0570b0;
14    color: #d0d1e6;
15    background-image: url(/static/images/tools.gif);
16    background-repeat: no-repeat;
17    background-position: bottom right;
18}
19
20body.toolMenuPage a
21{
22    color: #ece7f2;
23}
24
25body.toolMenuPage a:hover
26{
27    color: white;
28}
29
30body.historyPage
31{
32    background: #045a8d;
33    color: #d0d1e6;
34    background-image: url(/static/images/history.gif);
35    background-repeat: no-repeat;
36    background-position: bottom right;
37}
38
39body.historyPage a
40{
41    color: #ece7f2;
42}
43
44body.mastheadPage
45{
46    background: #023858;
47    color: white;
48}
49
50body.mastheadPage a
51{
52    color: #ece7f2;
53}
54
55div.pageTitle
56{
57    font-size: x-large;
58    font-weight: bold;
59}
60
61/*
626 class diverging BrBG
63
64br2: #8c510a
65br1: #d8b365
66br0: #f6e8c3
67gr0:  #c7eae5
68gr1:  #5ab4ac
69gr2:  #01665e
70*/
71
72/*
73
74Dark to light:
75
76Blues
77-----
78
790: #023858
801: #045a8d
813: #0570b0
824: #3690c0
835: #74a9cf
846: #a6bddb
857: #d0d1e6
868: #ece7f2
87
88
89*/
90
91h1, h2, h3
92{
93    color: white;
94}   
95
96hr
97{
98    border: none;
99    border-bottom: dotted white 1px;
100}
101
102a:link {color: black}     /* unvisited link */
103a:visited {color: black}  /* visited link */
104a:hover {color: white}   /* mouse over link */
105a:active {color: black}   /* selected link */
106
107div.toolSectionList
108{
109  padding: 0px;
110  padding-top: 10px;
111  padding-bottom: 5px;
112  margin-bottom: 10px;
113  background: #045a8d;
114}
115
116div.toolSectionTitle
117{
118  padding-left: 10px;
119  padding-right: 22px;
120  padding-top: 5px;
121  padding-bottom: 5px;
122  text-weight: bold;
123}
124
125div.toolSectionDetailsInner
126{
127  margin-left: 10px;
128  margin-right: 10px;
129}
130
131div.toolTitle
132{
133  padding-bottom: 10px;
134}
135
136div.toolForm
137{
138  margin: 10px;
139}
140
141div.toolFormTitle
142{
143  background: #d8b365;
144  font-weight: bold;
145  padding: 5px;
146}
147
148div.toolFormBody
149{
150  background: #f6e8c3;
151  padding: 5px;
152}
153
154td.errorMessage
155{
156    color: #b30000;
157}
158
159div.toolHelp
160{
161  margin: 10px;
162}
163
164div.toolHelpBody
165{
166  background: white;
167  padding: 5px;
168}
169
170div.historyItem
171{
172    padding-top: 10px;
173    padding-bottom: 10px;
174    margin-right: 10px;
175    margin-left: 10px;
176    border-bottom: dotted #d0d1e6 1px;
177}
178
179pre.peek
180{
181    background: #f6e8c3;
182    color: black;
183    width: 100%;
184    overflow: auto;
185}
186
187div.document
188{
189    margin: 10px;
190}
191
192select
193{
194    max-width: 300px;
195}
196
197.errormessage, .warningmessage, .donemessage, .infomessage
198{
199    margin: 10px;
200    padding: .33em 0 .67em 42px;
201    min-height: 32px;
202    border-top: 5px solid #900;
203    border-bottom: 5px solid #900;
204    /* border-left: 1px solid #900; */
205    /* border-right: 1px solid #900; */
206    background: white;
207    background-image: url(/images/icon_error_lrg.gif);
208    background-repeat: no-repeat;
209    background-position: 5px 5px;
210}
211
212.warningmessage
213{
214    background-image: url(/images/icon_warning_lrg.gif);
215    border-color: #c60;
216}
217
218.donemessage
219{
220    background-image: url(/images/icon_success_lrg.gif);
221    border-color: #090;
222}
223
224.infomessage
225{
226    background-image: url(/images/icon_info_lrg.gif);
227    border-color: #069;
228}
229
230.errormark, .warningmark, .donemark, .infomark, .ok_bgr, .err_bgr
231{
232    padding-left: 20px;
233    min-height: 15px;
234    background: url(/images/icon_error_sml.gif) no-repeat;
235}
236
237.warningmark
238{
239    background-image: url(/images/icon_warning_sml.gif);
240}
241
242.donemark
243{
244    background-image: url(/images/icon_success_sml.gif);
245}
246
247.infomark, .ok_bgr
248{
249    background-image: url(/images/icon_info_sml.gif);
250}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。