Subversion Repositories LCARS

Rev

Rev 61 | Rev 83 | 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');
11
?>
12
@CHARSET "UTF-8";
13
 
14
/* Basic fonts */
15
 
16
@font-face {
17
  font-family: "LCARS";
18
  font-style: normal;
19
  font-weight: normal;
20
  src: local("LCARS"), url(fonts/LCARS.ttf);
21
}
22
 
23
/* EOT font created with WEFT on 2002-03-23 */
24
@font-face {
25
  font-family: "Downloadable Haettenschweiler";
26
  font-style: normal;
27
  font-weight: normal;
28
  src: url(fonts/HAETTEN0.eot), url(fonts/HAETTENS.ttf);
29
}
30
 
31
/*
32
@font-face {
33
  font-family:Webdings;
34
  font-style:normal;
35
  font-weight:normal;
36
  src:url(fonts/WEBDING0.eot);
37
}
38
*/
39
 
40
@font-face {
41
  font-family: "Downloadable Zurich XCn BT";
42
  font-style: normal;
43
  font-weight: normal;
44
  src: url(fonts/ZurichXCn.pfr);
45
}
46
 
47
/* Basic display */
48
 
49
* {
50
  font-family: "LCARS",
51
    Haettenschweiler, "Downloadable Haettenschweiler",
52
    "Zurich XCn BT", "Downloadable Zurich XCn BT",
53
    impact, Verdana, Geneva, Arial, Helvetica, sans-serif;
54
  font-weight: normal;
55
}
56
 
57
html {
58
  background-color: #000;
59
  color: #99f;
60
}
61
 
62
body {
63
  background-color: #000;
64
  color: #99f;
65
  font-size: 131%;
66
  overflow: auto;
67
}
68
 
69
body.empty {
70
  margin-top: 3em;
71
  margin-left: 0.2em;
72
  margin-bottom: 3em;
73
}
74
 
75
body.multi {
76
  /* TODO from lcars21.css, use `em' instead */
77
}
78
 
79
#content {
80
  /* position: relative; */
81
  margin-right: 1em;
82
}
83
 
84
a {
85
  text-decoration: none;
86
}
87
 
88
a:link:hover,
89
a:link:focus
90
{
74 PointedEar 91
  /* background-color:#000; */
58 PointedEar 92
  color: #f90;
93
}
94
 
95
a:link:active {
74 PointedEar 96
  /* background-color:#000; */
58 PointedEar 97
  color: #fff;
98
}
99
 
100
a:link {
74 PointedEar 101
  /* background-color:#000; */
102
  color: #fc9;
58 PointedEar 103
}
104
 
105
a:visited:hover,
106
a:visited:focus
107
{
74 PointedEar 108
  /* background-color:#000; */
109
  color: #f90;
58 PointedEar 110
}
111
 
112
a:visited:active {
74 PointedEar 113
  /* background-color: #000; */
114
  color: #fff;
58 PointedEar 115
}
116
 
117
a:hover,
118
a:focus,
119
a:active
120
{
121
  text-decoration: underline;
122
}
123
 
124
a:visited {
74 PointedEar 125
  /* background-color: #000; */
126
  color: #c9c;
58 PointedEar 127
}
128
 
129
h2 {
130
  background-color: #000;
131
  color: #fff;
132
  font-size: 136%;
133
}
134
 
135
p {
136
  margin-top: 1em;
137
  margin-bottom: 0;
138
  line-height: 1.5;
139
  text-align: justify;
140
}
141
 
142
li p {
143
  line-height: normal;
144
}
145
 
146
p:first-child {
147
  margin-top: 0;
148
}
149
 
150
.instruction {
151
  background-color: #000;
152
  color: #f90;
153
  font-size: 136%;
154
}
155
 
156
/* Language support */
157
 
158
[lang^="x-vulcan-latin"] {
159
  font-family: "URW Chancery L", "Matura MT Script Capitals",
160
    Haettenschweiler, Haettens, "Zurich XCn BT", impact, Verdana,
161
    Geneva, Arial, Helvetica, sans-serif;
162
}