Subversion Repositories LCARS

Rev

Rev 111 | Rev 117 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 111 Rev 116
Line 1... Line 1...
1
<?php
1
<?php
2
\header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT');
2
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT');
3
 
3
 
4
/* Do not let resource be cached in HTTP/1.1 caches */
4
/* Resource expires in HTTP/1.1 caches 24h after last retrieval */
5
\header('Cache-Control: max-age=0, s-maxage=0, must-revalidate, proxy-revalidate');
5
header('Cache-Control: max-age=0, s-maxage=86400, must-revalidate, proxy-revalidate');
6
6
7
/* Do not let resource be cached in HTTP/1.0 caches */
7
/* Resource expires in HTTP/1.1 caches 24h after last retrieval */
8
\header('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
8
header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT');
9
 
9
 
10
\header('Content-Type: text/css; charset=UTF-8');
10
header('Content-Type: text/css; charset=UTF-8');
11
?>@charset "UTF-8";
11
?>@charset "UTF-8";
12
12
13
/* Basic fonts */
13
/* Basic fonts */
14
14
15
@font-face {
15
@font-face {
Line 69... Line 69...
69
  margin-top: 2.4em;
69
  margin-top: 2.4em;
70
  margin-left: 0.2em;
70
  margin-left: 0.2em;
71
  margin-bottom: 2.5em;
71
  margin-bottom: 2.5em;
72
}
72
}
73
73
74
body.multi {
-
 
75
  /* TODO from lcars21.css, use `em' instead */
-
 
76
}
-
 
77
-
 
78
#content {
74
#content {
79
  margin: 0;
75
  margin: 0;
80
  margin-right: 1em;
76
  margin-right: 1em;
81
}
77
}
82
78
Line 165... Line 161...
165
161
166
[lang^="x-vulcan-latin"] {
162
[lang^="x-vulcan-latin"] {
167
  font-family: "URW Chancery L", "Matura MT Script Capitals",
163
  font-family: "URW Chancery L", "Matura MT Script Capitals",
168
    Haettenschweiler, Haettens, "Zurich XCn BT", impact, Verdana,
164
    Haettenschweiler, Haettens, "Zurich XCn BT", impact, Verdana,
169
    Geneva, Arial, Helvetica, sans-serif;
165
    Geneva, Arial, Helvetica, sans-serif;
170
}
-
 
171
-
 
172
/* HTML5 elements */
-
 
173
-
 
174
nav
-
 
175
{
-
 
176
  display: block;
-
 
177
}
166
}
178
167