Subversion Repositories LCARS

Rev

Rev 164 | Rev 206 | 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
 
164 PointedEar 56
html, body {
57
  -webkit-font-smoothing: antialiased;
58
}
59
 
58 PointedEar 60
html {
61
  background-color: #000;
62
  color: #99f;
63
}
64
 
65
body {
66
  background-color: #000;
67
  color: #99f;
68
  font-size: 131%;
69
  overflow: auto;
70
}
71
 
171 PointedEar 72
/* WebCore */
73
::selection {
74
  background-color: #f90;
75
  color: #000;
76
}
77
 
78
/* Gecko */
79
::-moz-selection {
80
  background-color: #f90;
81
  color: #000;
82
}
83
 
58 PointedEar 84
body.empty {
108 PointedEar 85
  margin-top: 2.4em;
58 PointedEar 86
  margin-left: 0.2em;
108 PointedEar 87
  margin-bottom: 2.5em;
58 PointedEar 88
}
89
 
90
#content {
111 PointedEar 91
  margin: 0;
58 PointedEar 92
  margin-right: 1em;
93
}
94
 
110 PointedEar 95
.empty #content {
111 PointedEar 96
  margin: 0 2.5em;
110 PointedEar 97
}
98
 
58 PointedEar 99
a {
100
  text-decoration: none;
101
}
102
 
103
a:link:hover,
104
a:link:focus
105
{
74 PointedEar 106
  /* background-color:#000; */
58 PointedEar 107
  color: #f90;
108
}
109
 
110
a:link:active {
74 PointedEar 111
  /* background-color:#000; */
58 PointedEar 112
  color: #fff;
113
}
114
 
115
a:link {
74 PointedEar 116
  /* background-color:#000; */
117
  color: #fc9;
58 PointedEar 118
}
119
 
120
a:visited:hover,
121
a:visited:focus
122
{
74 PointedEar 123
  /* background-color:#000; */
124
  color: #f90;
58 PointedEar 125
}
126
 
127
a:visited:active {
74 PointedEar 128
  /* background-color: #000; */
129
  color: #fff;
58 PointedEar 130
}
131
 
132
a:hover,
133
a:focus,
134
a:active
135
{
136
  text-decoration: underline;
137
}
138
 
139
a:visited {
74 PointedEar 140
  /* background-color: #000; */
141
  color: #c9c;
58 PointedEar 142
}
143
 
144
h2 {
145
  background-color: #000;
146
  color: #fff;
147
  font-size: 136%;
148
}
149
 
150
p {
151
  margin-top: 1em;
152
  margin-bottom: 0;
153
  line-height: 1.5;
154
  text-align: justify;
155
}
156
 
157
li p {
158
  line-height: normal;
159
}
160
 
161
p:first-child {
162
  margin-top: 0;
163
}
164
 
165
.instruction {
166
  background-color: #000;
167
  color: #f90;
168
  font-size: 136%;
169
}
170
 
144 PointedEar 171
.offline {
172
  background-color: #000;
173
  color: #f00;
174
}
175
 
176
.unavailable {
177
  background-color: #000;
178
  color: #39f;
179
}
180
 
83 PointedEar 181
[title]
182
{
183
  cursor: help;
184
}
185
 
58 PointedEar 186
/* Language support */
187
 
188
[lang^="x-vulcan-latin"] {
189
  font-family: "URW Chancery L", "Matura MT Script Capitals",
190
    Haettenschweiler, Haettens, "Zurich XCn BT", impact, Verdana,
191
    Geneva, Arial, Helvetica, sans-serif;
88 PointedEar 192
}