Rev 125 | Rev 144 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
58 | PointedEar | 1 | <?php |
125 | PointedEar | 2 | @header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT'); |
58 | PointedEar | 3 | |
116 | PointedEar | 4 | /* Resource expires in HTTP/1.1 caches 24h after last retrieval */ |
125 | PointedEar | 5 | @header('Cache-Control: max-age=86400, s-maxage=86400, must-revalidate, proxy-revalidate'); |
58 | PointedEar | 6 | |
116 | PointedEar | 7 | /* Resource expires in HTTP/1.1 caches 24h after last retrieval */ |
125 | PointedEar | 8 | @header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT'); |
58 | PointedEar | 9 | |
125 | PointedEar | 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; |
||
135 | PointedEar | 19 | src: local("LCARS"), url(/styles/fonts/LCARS.ttf); |
58 | PointedEar | 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; |
||
135 | PointedEar | 27 | src: url(/styles/fonts/HAETTEN0.eot), url(/styles/fonts/HAETTENS.ttf); |
58 | PointedEar | 28 | } |
29 | |||
30 | /* |
||
31 | @font-face { |
||
32 | font-family:Webdings; |
||
33 | font-style:normal; |
||
34 | font-weight:normal; |
||
135 | PointedEar | 35 | src:url(/styles/fonts/WEBDING0.eot); |
58 | PointedEar | 36 | } |
37 | */ |
||
38 | |||
39 | @font-face { |
||
40 | font-family: "Downloadable Zurich XCn BT"; |
||
41 | font-style: normal; |
||
42 | font-weight: normal; |
||
135 | PointedEar | 43 | src: url(/styles/fonts/ZurichXCn.pfr); |
58 | PointedEar | 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 | #content { |
||
111 | PointedEar | 75 | margin: 0; |
58 | PointedEar | 76 | margin-right: 1em; |
77 | } |
||
78 | |||
110 | PointedEar | 79 | .empty #content { |
111 | PointedEar | 80 | margin: 0 2.5em; |
110 | PointedEar | 81 | } |
82 | |||
58 | PointedEar | 83 | a { |
84 | text-decoration: none; |
||
85 | } |
||
86 | |||
87 | a:link:hover, |
||
88 | a:link:focus |
||
89 | { |
||
74 | PointedEar | 90 | /* background-color:#000; */ |
58 | PointedEar | 91 | color: #f90; |
92 | } |
||
93 | |||
94 | a:link:active { |
||
74 | PointedEar | 95 | /* background-color:#000; */ |
58 | PointedEar | 96 | color: #fff; |
97 | } |
||
98 | |||
99 | a:link { |
||
74 | PointedEar | 100 | /* background-color:#000; */ |
101 | color: #fc9; |
||
58 | PointedEar | 102 | } |
103 | |||
104 | a:visited:hover, |
||
105 | a:visited:focus |
||
106 | { |
||
74 | PointedEar | 107 | /* background-color:#000; */ |
108 | color: #f90; |
||
58 | PointedEar | 109 | } |
110 | |||
111 | a:visited:active { |
||
74 | PointedEar | 112 | /* background-color: #000; */ |
113 | color: #fff; |
||
58 | PointedEar | 114 | } |
115 | |||
116 | a:hover, |
||
117 | a:focus, |
||
118 | a:active |
||
119 | { |
||
120 | text-decoration: underline; |
||
121 | } |
||
122 | |||
123 | a:visited { |
||
74 | PointedEar | 124 | /* background-color: #000; */ |
125 | color: #c9c; |
||
58 | PointedEar | 126 | } |
127 | |||
128 | h2 { |
||
129 | background-color: #000; |
||
130 | color: #fff; |
||
131 | font-size: 136%; |
||
132 | } |
||
133 | |||
134 | p { |
||
135 | margin-top: 1em; |
||
136 | margin-bottom: 0; |
||
137 | line-height: 1.5; |
||
138 | text-align: justify; |
||
139 | } |
||
140 | |||
141 | li p { |
||
142 | line-height: normal; |
||
143 | } |
||
144 | |||
145 | p:first-child { |
||
146 | margin-top: 0; |
||
147 | } |
||
148 | |||
149 | .instruction { |
||
150 | background-color: #000; |
||
151 | color: #f90; |
||
152 | font-size: 136%; |
||
153 | } |
||
154 | |||
83 | PointedEar | 155 | [title] |
156 | { |
||
157 | cursor: help; |
||
158 | } |
||
159 | |||
58 | PointedEar | 160 | /* Language support */ |
161 | |||
162 | [lang^="x-vulcan-latin"] { |
||
163 | font-family: "URW Chancery L", "Matura MT Script Capitals", |
||
164 | Haettenschweiler, Haettens, "Zurich XCn BT", impact, Verdana, |
||
165 | Geneva, Arial, Helvetica, sans-serif; |
||
88 | PointedEar | 166 | } |