Rev 108 | Rev 111 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
58 | PointedEar | 1 | <?php |
2 | \header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT'); |
||
3 | |||
4 | /* Do not let resource be cached in HTTP/1.1 caches */ |
||
5 | \header('Cache-Control: max-age=0, s-maxage=0, must-revalidate, proxy-revalidate'); |
||
6 | |||
7 | /* Do not let resource be cached in HTTP/1.0 caches */ |
||
8 | \header('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT'); |
||
9 | |||
10 | \header('Content-Type: text/css; charset=UTF-8'); |
||
83 | PointedEar | 11 | ?>@charset "UTF-8"; |
58 | PointedEar | 12 | |
13 | /* Basic fonts */ |
||
14 | |||
15 | @font-face { |
||
16 | font-family: "LCARS"; |
||
17 | font-style: normal; |
||
18 | font-weight: normal; |
||
19 | src: local("LCARS"), url(fonts/LCARS.ttf); |
||
20 | } |
||
21 | |||
22 | /* EOT font created with WEFT on 2002-03-23 */ |
||
23 | @font-face { |
||
24 | font-family: "Downloadable Haettenschweiler"; |
||
25 | font-style: normal; |
||
26 | font-weight: normal; |
||
27 | src: url(fonts/HAETTEN0.eot), url(fonts/HAETTENS.ttf); |
||
28 | } |
||
29 | |||
30 | /* |
||
31 | @font-face { |
||
32 | font-family:Webdings; |
||
33 | font-style:normal; |
||
34 | font-weight:normal; |
||
35 | src:url(fonts/WEBDING0.eot); |
||
36 | } |
||
37 | */ |
||
38 | |||
39 | @font-face { |
||
40 | font-family: "Downloadable Zurich XCn BT"; |
||
41 | font-style: normal; |
||
42 | font-weight: normal; |
||
43 | src: url(fonts/ZurichXCn.pfr); |
||
44 | } |
||
45 | |||
46 | /* Basic display */ |
||
47 | |||
48 | * { |
||
49 | font-family: "LCARS", |
||
50 | Haettenschweiler, "Downloadable Haettenschweiler", |
||
51 | "Zurich XCn BT", "Downloadable Zurich XCn BT", |
||
52 | impact, Verdana, Geneva, Arial, Helvetica, sans-serif; |
||
53 | font-weight: normal; |
||
54 | } |
||
55 | |||
56 | html { |
||
57 | background-color: #000; |
||
58 | color: #99f; |
||
59 | } |
||
60 | |||
61 | body { |
||
62 | background-color: #000; |
||
63 | color: #99f; |
||
64 | font-size: 131%; |
||
65 | overflow: auto; |
||
66 | } |
||
67 | |||
68 | body.empty { |
||
108 | PointedEar | 69 | margin-top: 2.4em; |
58 | PointedEar | 70 | margin-left: 0.2em; |
108 | PointedEar | 71 | margin-bottom: 2.5em; |
58 | PointedEar | 72 | } |
73 | |||
74 | body.multi { |
||
75 | /* TODO from lcars21.css, use `em' instead */ |
||
76 | } |
||
77 | |||
78 | #content { |
||
79 | /* position: relative; */ |
||
80 | margin-right: 1em; |
||
81 | } |
||
82 | |||
110 | PointedEar | 83 | .empty #content { |
84 | /* position: relative; */ |
||
85 | margin-left: 1em; |
||
86 | } |
||
87 | |||
58 | PointedEar | 88 | a { |
89 | text-decoration: none; |
||
90 | } |
||
91 | |||
92 | a:link:hover, |
||
93 | a:link:focus |
||
94 | { |
||
74 | PointedEar | 95 | /* background-color:#000; */ |
58 | PointedEar | 96 | color: #f90; |
97 | } |
||
98 | |||
99 | a:link:active { |
||
74 | PointedEar | 100 | /* background-color:#000; */ |
58 | PointedEar | 101 | color: #fff; |
102 | } |
||
103 | |||
104 | a:link { |
||
74 | PointedEar | 105 | /* background-color:#000; */ |
106 | color: #fc9; |
||
58 | PointedEar | 107 | } |
108 | |||
109 | a:visited:hover, |
||
110 | a:visited:focus |
||
111 | { |
||
74 | PointedEar | 112 | /* background-color:#000; */ |
113 | color: #f90; |
||
58 | PointedEar | 114 | } |
115 | |||
116 | a:visited:active { |
||
74 | PointedEar | 117 | /* background-color: #000; */ |
118 | color: #fff; |
||
58 | PointedEar | 119 | } |
120 | |||
121 | a:hover, |
||
122 | a:focus, |
||
123 | a:active |
||
124 | { |
||
125 | text-decoration: underline; |
||
126 | } |
||
127 | |||
128 | a:visited { |
||
74 | PointedEar | 129 | /* background-color: #000; */ |
130 | color: #c9c; |
||
58 | PointedEar | 131 | } |
132 | |||
133 | h2 { |
||
134 | background-color: #000; |
||
135 | color: #fff; |
||
136 | font-size: 136%; |
||
137 | } |
||
138 | |||
139 | p { |
||
140 | margin-top: 1em; |
||
141 | margin-bottom: 0; |
||
142 | line-height: 1.5; |
||
143 | text-align: justify; |
||
144 | } |
||
145 | |||
146 | li p { |
||
147 | line-height: normal; |
||
148 | } |
||
149 | |||
150 | p:first-child { |
||
151 | margin-top: 0; |
||
152 | } |
||
153 | |||
154 | .instruction { |
||
155 | background-color: #000; |
||
156 | color: #f90; |
||
157 | font-size: 136%; |
||
158 | } |
||
159 | |||
83 | PointedEar | 160 | [title] |
161 | { |
||
162 | cursor: help; |
||
163 | } |
||
164 | |||
58 | PointedEar | 165 | /* Language support */ |
166 | |||
167 | [lang^="x-vulcan-latin"] { |
||
168 | font-family: "URW Chancery L", "Matura MT Script Capitals", |
||
169 | Haettenschweiler, Haettens, "Zurich XCn BT", impact, Verdana, |
||
170 | Geneva, Arial, Helvetica, sans-serif; |
||
171 | } |
||
88 | PointedEar | 172 | |
173 | /* HTML5 elements */ |
||
174 | |||
175 | nav |
||
176 | { |
||
177 | display: block; |
||
178 | } |