/[PLies]/css/blue.css
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /css/blue.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations)
Tue Sep 18 12:43:11 2001 UTC (22 years, 7 months ago) by dpavlin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +85 -0 lines
File MIME type: text/css
major upgrade of CSS, now includes many classes for table layout

1 dpavlin 1.1 /* ================================================================
2     CSS layout definition for an XSLies presentation.
3    
4     Modified for PLies by Dobrica Pavlinusic <dpavlin@rot13.org>
5    
6     Copyright 2000 Sami Lempinen (lempinen@iki.fi)
7     See the file LICENSE for copyright information.
8    
9     $Id: default.css,v 1.4 2000/09/07 15:20:19 ssl Exp $
10     ================================================================ */
11    
12     /* ---------------------------------------------------------------- */
13     /* General settings */
14    
15     BODY, TD
16     {
17     font-family: verdana, arial, helvetica, sans-serif;
18     background: #ffffff;
19     }
20    
21     P
22     {
23     font-family: verdana, arial, helvetica, sans-serif;
24     }
25    
26     A:link, A:visited, A:active
27     {
28     color: #223c82;
29     text-decoration:none;
30     }
31    
32     /* ---------------------------------------------------------------- */
33     /* Headings */
34    
35     H1
36     {
37     margin-top: 0pt;
38     margin-bottom: 0pt;
39     font-size: xx-large;
40     }
41    
42     H2
43     {
44     margin-top: 0pt;
45     margin-bottom: 0pt;
46     font-size: x-large;
47     }
48    
49     H3
50     {
51     margin-top: 0pt;
52     margin-bottom: 0pt;
53     font-size: large;
54     }
55    
56     /* ---------------------------------------------------------------- */
57     /* Page header */
58    
59     TD.header-first, TD.header
60     {
61     background: #ffffff;
62     }
63    
64     TD.cell-logo
65     {
66     text-align: center;
67     background: #ff9900;
68     color: #ffffff;
69     font-size: x-large;
70     }
71    
72     TD.cell-logo
73     {
74     background: #ffffff;
75     text-align: left;
76     }
77    
78     TD.cell-heading-up
79     {
80     text-align: right;
81     background: #223c82;
82     color: #ffffff;
83     font-size: x-large;
84     cellpadding: 10;
85     }
86    
87     TD.cell-heading-down
88     {
89     text-align: right;
90     background: #223c82;
91     color: #ff9900;
92     font-size: x-large;
93     }
94    
95     TD.cell-heading-white
96     {
97     text-align: right;
98     background: #ffffff;
99     font-size: xx-small;
100     }
101    
102     TD.cell-heading-orange
103     {
104     text-align: right;
105     background: #ff9900;
106     font-size: xx-small;
107     }
108    
109    
110     /* ---------------------------------------------------------------- */
111     /* Page body */
112    
113     DIV.body
114     {
115     text-align: left;
116     margin-left: 3em;
117     margin-right: 3em;
118     font-size: large;
119     }
120    
121     /* ---------------------------------------------------------------- */
122     /* Page footer */
123    
124     TD.footer
125     {
126     text-align: center;
127     }
128    
129     TD.footer-info
130     {
131     font-size: small;
132     }
133    
134     TD.footer-count
135     {
136     font-size: small;
137     text-align: right;
138     }
139    
140     TD.footer-nav
141     {
142     font-size: normal;
143     text-align: center;
144     }
145    
146     /* ---------------------------------------------------------------- */
147     /* Particular elements */
148    
149     .note
150     {
151     color: #ff9900;
152     }
153    
154     PRE, CODE
155     {
156     font-family: courier, monospaced;
157     }
158    
159     SMALL
160     {
161     font-size: x-small;
162     }
163    
164     TD
165     {
166     font-size: small;
167     }
168    
169     TH
170     {
171     font-size: small;
172     background: #223c82;
173     color: #ffffff;
174     }
175    
176     /* for better support of Mozilla composer */
177    
178     blockquote
179     {
180     color: #333333;
181     font-style: italic;
182     }
183    
184     strong
185     {
186     color: #ff9900;
187     }
188    
189     /* progress bar */
190     TD.pcnt-done
191     {
192     background: #ff9900;
193     color: #000000;
194     font-size: x-small;
195     text-align: center;
196     }
197    
198     TD.pcnt-left
199     {
200     background: #223c82;
201     color: #ffffff;
202     font-size: x-small;
203     text-align: center;
204     }
205    
206     /* main content for title slide */
207     DIV.title
208     {
209     text-align: center;
210     margin-left: 3em;
211     margin-right: 3em;
212     font-size: x-large;
213     }
214    
215     /* superscript and subscript font size modification */
216     SUP
217     {
218     font-size: x-small;
219     }
220    
221     SUB
222     {
223     font-size: x-small;
224     }
225    
226 dpavlin 1.2 /* Orange/Black */
227     TD.ob
228     {
229     background: #ff9900;
230     color: #000000;
231     text-align: center;
232     }
233    
234     /* Blue/White */
235     TD.bw
236     {
237     background: #223c82;
238     color: #ffffff;
239     text-align: center;
240     }
241    
242     /* White background, Orange, Blue, heading */
243    
244     TD.wo
245     {
246     background: #ffffff;
247     color: #ff9900;
248     text-align: center;
249     }
250    
251     TD.wb
252     {
253     background: #ffffff;
254     color: #223c82;
255     text-align: center;
256     }
257    
258     TD.w-th
259     {
260     background: #ffffff;
261     color: #000000;
262     text-align: left;
263     font-weight: bold;
264     }
265    
266     TD.w-c
267     {
268     background: #ffffff;
269     color: #000000;
270     text-align: center;
271     }
272    
273    
274     /* Gray background, Orange, Blue, heading */
275    
276     TD.go
277     {
278     background: #eeeeee;
279     color: #ff9900;
280     text-align: center;
281     }
282    
283     TD.gb
284     {
285     background: #eeeeee;
286     color: #223c82;
287     text-align: center;
288     }
289    
290     TD.g-th
291     {
292     background: #eeeeee;
293     color: #000000;
294     text-align: left;
295     font-weight: bold;
296     }
297    
298     TD.g-c
299     {
300     background: #eeeeee;
301     color: #000000;
302     text-align: center;
303     }
304    
305    
306     TD.c
307     {
308     text-align: center;
309     }
310    

  ViewVC Help
Powered by ViewVC 1.1.26