Subversion Repositories LCARS

Rev

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