Subversion Repositories LCARS

Rev

Rev 172 | Rev 192 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 172 Rev 174
1
<?php
1
<?php
2
namespace de\pointedears\css\least;
2
namespace de\pointedears\css\least;
3
3
4
\header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT');
4
\header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT');
5
5
6
/* Cached resource expires in HTTP/1.1 caches 24h after last retrieval */
6
/* Cached resource expires in HTTP/1.1 caches 24h after last retrieval */
7
\header('Cache-Control: max-age=86400, s-maxage=86400, must-revalidate, proxy-revalidate');
7
\header('Cache-Control: max-age=86400, s-maxage=86400, must-revalidate, proxy-revalidate');
8
8
9
/* Cached resource expires in HTTP/1.0 caches 24h after last retrieval */
9
/* Cached resource expires in HTTP/1.0 caches 24h after last retrieval */
10
\header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT');
10
\header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT');
11
11
12
\header('Content-Type: text/css; charset=UTF-8');
12
\header('Content-Type: text/css; charset=UTF-8');
13
13
14
require_once 'css/least/Mixins.php';
14
require_once 'css/least/Mixins.php';
15
?>
15
?>
16
@CHARSET "UTF-8";
16
@CHARSET "UTF-8";
17
17
18
html, body {
18
html, body {
19
  -webkit-font-smoothing: antialiased;
19
  -webkit-font-smoothing: antialiased;
20
}
20
}
21
21
22
h1, h2, h3, h4, h5, h6 {
22
h1, h2, h3, h4, h5, h6 {
23
  /* from SVG for Gecko and WebKit */
23
  /* from SVG for Gecko and WebKit */
24
  text-rendering: optimizeLegibility;
24
  text-rendering: optimizeLegibility;
25
}
25
}
26
26
27
body {
27
body {
28
  font-family: sans-serif;
28
  font-family: sans-serif;
29
}
29
}
30
30
31
:link, :visited {
31
:link, :visited {
32
  text-decoration: none;
32
  text-decoration: none;
33
  color: inherit;
33
  color: inherit;
34
}
34
}
35
35
36
.hidden {
36
.hidden {
37
  display: none !important;
37
  display: none !important;
38
}
38
}
39
39
40
h1 {
40
h1 {
41
  margin: 0;
41
  margin: 0;
42
  text-align: center;
42
  text-align: center;
43
}
43
}
44
44
45
[title] {
45
[title] {
46
  cursor: help;
46
  cursor: help;
47
/*  border-bottom: 1px dotted black; */
47
/*  border-bottom: 1px dotted black; */
48
}
48
}
49
49
50
table {
50
table {
51
  width: 100%;
51
  width: 100%;
52
  border-collapse: collapse;
52
  border-collapse: collapse;
53
}
53
}
54
54
55
th {
55
th {
56
  width: 20%;
56
  width: 20%;
57
  padding: 0.25em 0.5em 0.25em 0;
57
  padding: 0.25em 0.5em 0.25em 0;
58
  font-weight: normal;
58
  font-weight: normal;
59
  text-align: right;
59
  text-align: right;
60
}
60
}
61
61
62
td:first-child {
62
td:first-child {
63
  width: 1em;
63
  width: 1em;
64
  border: none;
64
  border: none;
65
}
65
}
66
66
67
th.recommended {
67
th.recommended {
68
  border-left: 2px solid green;
68
  border-left: 2px solid green;
69
  border-top: 2px solid green;
69
  border-top: 2px solid green;
70
  border-bottom: 2px solid green;
70
  border-bottom: 2px solid green;
71
}
71
}
72
72
73
td:last-child {
73
td:last-child {
74
  padding-right: 0.25em;
74
  padding-right: 0.25em;
75
}
75
}
76
76
77
td.recommended {
77
td.recommended {
78
  border-top: 2px solid green;
78
  border-top: 2px solid green;
79
  border-right: 2px solid green;
79
  border-right: 2px solid green;
80
  border-bottom: 2px solid green;
80
  border-bottom: 2px solid green;
81
}
81
}
82
82
83
@font-face {
83
@font-face {
84
  font-family: "Futura Condensed";
84
  font-family: "Futura Condensed";
85
  src: local("Futura Condensed"), url(/styles/fonts/non-free/futura_condensed.TTF);
85
  src: local("Futura Condensed"), url(/styles/fonts/non-free/futura_condensed.TTF);
86
}
86
}
87
87
88
@font-face {
88
@font-face {
89
  font-family: "X-Files";
89
  font-family: "X-Files";
90
  src: local("X-Files"), url(/styles/fonts/x-files.ttf);
90
  src: local("X-Files"), url(/styles/fonts/x-files.ttf);
91
}
91
}
92
92
93
.akte-x {
93
.akte-x {
94
  padding: 1em 0.25em 0.6em 0.25em;
94
  padding: 1em 0.25em 0.6em 0.25em;
95
  <?php
95
  <?php
96
/*  
96
/*  
97
  background-image: -(o-|)linear-gradient(12deg,
97
  background-image: -(o-|)linear-gradient(12deg,
98
       rgba(236, 244, 235, 0) 33%, rgba(236, 244, 235, 0.9) 68%,
98
       rgba(236, 244, 235, 0) 33%, rgba(236, 244, 235, 0.9) 68%,
99
       rgba(236, 244, 235, 0.9) 70%, rgba(236, 244, 235, 0) 90%);
99
       rgba(236, 244, 235, 0.9) 70%, rgba(236, 244, 235, 0) 90%);
100
*/      
100
*/      
101
        Mixins::linear_gradient(
101
        Mixins::linear_gradient(
102
                'background-image',
102
                'background-image',
103
                '12deg,
103
                '12deg,
104
       rgba(236, 244, 235, 0) 33%, rgba(236, 244, 235, 0.9) 68%,
104
       rgba(236, 244, 235, 0) 33%, rgba(236, 244, 235, 0.9) 68%,
105
       rgba(236, 244, 235, 0.9) 70%, rgba(236, 244, 235, 0) 90%',
105
       rgba(236, 244, 235, 0.9) 70%, rgba(236, 244, 235, 0) 90%',
106
      array('-o-', ''));
106
      array('-o-', ''));
107
        ?>
107
        ?>
108
  background-image:
108
  background-image:
109
    -moz-radial-gradient(65% 60%,
109
    -moz-radial-gradient(65% 60%,
110
      rgba(236, 244, 235, 0.5) 50%, rgba(236, 244, 235, 0.1)),
110
      rgba(236, 244, 235, 0.5) 50%, rgba(236, 244, 235, 0.1)),
111
    -moz-linear-gradient(12deg,
111
    -moz-linear-gradient(12deg,
112
      rgba(236, 244, 235, 0) 33%, rgba(236, 244, 235, 0.9) 68%,
112
      rgba(236, 244, 235, 0) 33%, rgba(236, 244, 235, 0.9) 68%,
113
      rgba(236, 244, 235, 0.9) 70%, rgba(236, 244, 235, 0) 90%);
113
      rgba(236, 244, 235, 0.9) 70%, rgba(236, 244, 235, 0) 90%);
114
  background-image:
114
  background-image:
115
    -webkit-radial-gradient(65% 60%, 25% 75%,
115
    -webkit-radial-gradient(65% 60%, 25% 75%,
116
      rgba(236, 244, 235, 0.5) 50%, rgba(236, 244, 235, 0.1)),
116
      rgba(236, 244, 235, 0.5) 50%, rgba(236, 244, 235, 0.1)),
117
    -webkit-linear-gradient(12deg,
117
    -webkit-linear-gradient(12deg,
118
      rgba(236, 244, 235, 0) 33%, rgba(236, 244, 235, 0.9) 68%,
118
      rgba(236, 244, 235, 0) 33%, rgba(236, 244, 235, 0.9) 68%,
119
      rgba(236, 244, 235, 0.9) 70%, rgba(236, 244, 235, 0) 90%);
119
      rgba(236, 244, 235, 0.9) 70%, rgba(236, 244, 235, 0) 90%);
120
  background-color: #000;
120
  background-color: #000;
121
  color: #dcdfdc;
121
  color: #dcdfdc;
122
  line-height: 2em;
122
  line-height: 2em;
123
  vertical-align: middle;  
123
  vertical-align: middle;  
124
}
124
}
125
125
126
.akte-x .small {
126
.akte-x .small {
127
  padding-left: 1em;
127
  padding-left: 1em;
128
<?php
128
<?php
129
/*  
129
/*  
130
  background-image: -()linear-gradient(bottom left, black, transparent);
130
  background-image: -()linear-gradient(bottom left, black, transparent);
131
 */  
131
 */  
132
  Mixins::linear_gradient('background-image', 'bottom left, black, transparent');
132
  Mixins::linear_gradient('background-image', 'bottom left, black, transparent');
133
?>
133
?>
134
  vertical-align: middle;
134
  vertical-align: middle;
135
  font-family: "Futura Condensed", sans-serif;
135
  font-family: "Futura Condensed", sans-serif;
136
  font-size: 50%;
136
  font-size: 50%;
137
  text-transform: uppercase;
137
  text-transform: uppercase;
138
  letter-spacing: 1em;
138
  letter-spacing: 1em;
139
}
139
}
140
140
141
.akte-x .before-x {
141
.akte-x .before-x {
142
  letter-spacing: normal;
142
  letter-spacing: normal;
143
}
143
}
144
144
145
.akte-x .x {
145
.akte-x .x {
146
  font-family: "X-Files", sans-serif;
146
  font-family: "X-Files", sans-serif;
147
  font-size: 600%;
147
  font-size: 600%;
148
  font-weight: lighter;
148
  font-weight: lighter;
149
  vertical-align: middle;
149
  vertical-align: middle;
150
  vertical-align: -webkit-baseline-middle;
150
  vertical-align: -webkit-baseline-middle;
151
  color: black;
151
  color: black;
152
  -webkit-mask-image: -webkit-linear-gradient(-12deg,
152
  -webkit-mask-image: -webkit-linear-gradient(-12deg,
153
    rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 1));
153
    rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 1));
154
}
154
}
155
155
156
.alf {
156
.alf {
157
  font-family: "URW Bookman L", serif;
157
  font-family: "URW Bookman L", serif;
158
  font-weight: bold;
158
  font-weight: bold;
159
  font-size: 120%;
159
  font-size: 120%;
160
 
160
 
161
}
161
}
162
162
163
@font-face {
163
@font-face {
164
  font-family: "Highguard";
164
  font-family: "Highguard";
165
  src: local("Highguard"), url(/styles/fonts/Highguard.ttf);
165
  src: local("Highguard"), url(/styles/fonts/Highguard.ttf);
166
}
166
}
167
167
168
.andromeda {
168
.andromeda {
169
  position: relative;
169
  position: relative;
170
  font-family: "Highguard", sans-serif;
170
  font-family: "Highguard", sans-serif;
171
  font-size: 204%;
171
  font-size: 204%;
172
  color: rgba(245, 153, 79, 1);
172
  color: rgba(245, 153, 79, 1);
173
  text-shadow:
173
  text-shadow:
174
    /* blurred shadow */
174
    /* blurred shadow */
175
    -1px 0 2px black, 0 -1px 2px black, 1px 0 2px black, 0 1px 2px black,
175
    -1px 0 2px black, 0 -1px 2px black, 1px 0 2px black, 0 1px 2px black,
176
   
176
   
177
    /* outline */
177
    /* outline */
178
    -1px 0 black, 0 -1px black, 1px 0 black, 0 1px black;
178
    -1px 0 black, 0 -1px black, 1px 0 black, 0 1px black;
179
}
179
}
180
180
181
.andromeda .gradient {
181
.andromeda .gradient {
182
  -webkit-mask-image: -webkit-linear-gradient(top,
182
  -webkit-mask-image: -webkit-linear-gradient(top,
183
    rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 1));
183
    rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 1));
184
}
184
}
185
185
186
.andromeda .roddenberry {
186
.andromeda .roddenberry {
187
  position: absolute;
187
  position: absolute;
188
  right: 3.75em;
188
  right: 3.75em;
189
  top: 1.7em;
189
  top: 1.7em;
190
  font-family: sans-serif;
190
  font-family: sans-serif;
191
  font-size: 21%;
191
  font-size: 21%;
192
  text-transform: uppercase;
192
  text-transform: uppercase;
193
  color: black;
193
  color: black;
194
  text-shadow: none;
194
  text-shadow: none;
195
  letter-spacing: 0;
195
  letter-spacing: 0;
196
}
196
}
197
197
198
.big-bang-theory {
198
.big-bang-theory {
199
  font-family: Impact, sans-serif;
199
  font-family: Impact, sans-serif;
200
  font-size: 122%;
200
  font-size: 122%;
201
  font-weight: bold;
201
  font-weight: bold;
202
  text-transform: uppercase;
202
  text-transform: uppercase;
203
}
203
}
204
204
205
.big-bang-theory .lower {
205
.big-bang-theory .lower {
206
  font-size: 0.75em;
206
  font-size: 0.75em;
207
  text-transform: lowercase;
207
  text-transform: lowercase;
208
}
208
}
209
209
210
.big-bang-theory .i {
210
.big-bang-theory .i {
211
  text-transform: none;
211
  text-transform: none;
212
  font-size: 111%;
212
  font-size: 111%;
213
  font-weight: normal;
213
  font-weight: normal;
214
}
214
}
215
215
216
.big-bang-theory .bang {
216
.big-bang-theory .bang {
217
  color: #CE152C;
217
  color: #CE152C;
218
}
218
}
219
219
220
@font-face {
220
@font-face {
221
  font-family: "Battlestar";
221
  font-family: "Battlestar";
222
  src: local("Battlestar"), url(/styles/fonts/BATTLEST.TTF);
222
  src: local("Battlestar"), url(/styles/fonts/BATTLEST.TTF);
223
}
223
}
224
224
225
.bsg {
225
.bsg {
226
  font-family: "Battlestar", sans-serif;
226
  font-family: "Battlestar", sans-serif;
227
  font-size: 84%;
227
  font-size: 84%;
228
}
228
}
229
229
230
@font-face {
230
@font-face {
231
  font-family: "Buffied";
231
  font-family: "Buffied";
232
  src: local("Buffied"), url(/styles/fonts/Buffied.ttf);
232
  src: local("Buffied"), url(/styles/fonts/Buffied.ttf);
233
}
233
}
234
234
235
@font-face {
235
@font-face {
236
  font-family: "Slayer";
236
  font-family: "Slayer";
237
  src: url(/styles/fonts/slayer11.eot?);
237
  src: url(/styles/fonts/slayer11.eot?);
238
  src: local("Slayer"),
238
  src: local("Slayer"),
239
    url(/styles/fonts/slayer11.eot?) format("eot"),
239
    url(/styles/fonts/slayer11.eot?) format("eot"),
240
    url(/styles/fonts/slayer11.woff) format("woff"),
240
    url(/styles/fonts/slayer11.woff) format("woff"),
241
    url(/styles/fonts/slayer11.ttf) format("truetype"),
241
    url(/styles/fonts/slayer11.ttf) format("truetype"),
242
    url(/styles/fonts/slayer11.svg#Slayer) format("svg");
242
    url(/styles/fonts/slayer11.svg#Slayer) format("svg");
243
  font-weight: normal;
243
  font-weight: normal;
244
  font-style: normal;
244
  font-style: normal;
245
}
245
}
246
246
247
@font-face {
247
@font-face {
248
  font-family: "Kruella";
248
  font-family: "Kruella";
249
  src: local("Kruella"), url(/styles/fonts/non-free/kruella.ttf);
249
  src: local("Kruella"), url(/styles/fonts/non-free/kruella.ttf);
250
}
250
}
251
251
252
.buffy {
252
.buffy {
253
  display: inline-block;
253
  display: inline-block;
254
  padding: 0.75em 0.5em 0.5em 0.5em;
254
  padding: 0.75em 0.5em 0.5em 0.5em;
255
  background-color: #000700;
255
  background-color: #000700;
256
  <?php Mixins::radial_gradient('background-image', 'circle, #6d7a9c 35%, transparent 45%'); ?>
256
  <?php Mixins::radial_gradient('background-image', 'circle, #6d7a9c 35%, transparent 45%'); ?>
257
  color: #feffff;
257
  color: #feffff;
258
  line-height: 1em;
258
  line-height: 1em;
259
  text-align: center;
259
  text-align: center;
260
  text-shadow: 1px 1px 1px black;
260
  text-shadow: 1px 1px 1px black;
261
}
261
}
262
262
263
.buffy .title {
263
.buffy .title {
264
  font-family: "Buffied", fantasy;
264
  font-family: "Buffied", fantasy;
265
  font-size: 200%;  
265
  font-size: 200%;  
266
}
266
}
267
267
268
.buffy .subtitle {
268
.buffy .subtitle {
269
  display: block;
269
  display: block;
270
  font-family: "Slayer", sans-serif;
270
  font-family: "Slayer", sans-serif;
271
  font-size: 50%;
271
  font-size: 50%;
272
  font-variant: small-caps;
272
  font-variant: small-caps;
273
}
273
}
274
274
275
@font-face {
275
@font-face {
276
  font-family: "Arno Pro Caption";
276
  font-family: "Arno Pro Caption";
277
  src: local("Arno Pro Caption"), url(/styles/fonts/non-free/arnopro-caption.otf);
277
  src: local("Arno Pro Caption"), url(/styles/fonts/non-free/arnopro-caption.otf);
278
}
278
}
279
279
280
.castle {
280
.castle {
281
  font-family: "Arno Pro Caption", serif;
281
  font-family: "Arno Pro Caption", serif;
282
  font-size: 120%;
282
  font-size: 120%;
283
  line-height: 1;
283
  line-height: 1;
284
  text-transform: uppercase;
284
  text-transform: uppercase;
285
}
285
}
286
286
287
@font-face {
287
@font-face {
288
  font-family: "KopyKattKut Bold";
288
  font-family: "KopyKattKut Bold";
289
  src: local("KopyKattKut Bold"), url(/styles/fonts/KopyKattKut-Bold.otf);
289
  src: local("KopyKattKut Bold"), url(/styles/fonts/KopyKattKut-Bold.otf);
290
}
290
}
291
291
292
.charmed {
292
.charmed {
293
  position: relative;
293
  position: relative;
294
  display: inline-block;
294
  display: inline-block;
295
  background-color: #080E32;
295
  background-color: #080E32;
296
  color: rgb(223, 229, 251);
296
  color: rgb(223, 229, 251);
297
  color: rgba(255, 255, 255, 0.75);
297
  color: rgba(255, 255, 255, 0.75);
298
  padding: 1.5em 0.5em 0.75em 0.5em;
298
  padding: 1.5em 0.5em 0.75em 0.5em;
299
  font-family: "KopyKattKut Bold", serif;
299
  font-family: "KopyKattKut Bold", serif;
300
  font-size: 115%;
300
  font-size: 115%;
301
  /*letter-spacing: -0.125em;*/
301
  /*letter-spacing: -0.125em;*/
302
  line-height: 2;
302
  line-height: 2;
303
  overflow: hidden;
303
  overflow: hidden;
304
  text-transform: uppercase;
304
  text-transform: uppercase;
305
}
305
}
306
306
307
.charmed .circle {
307
.charmed .circle {
308
  position: absolute;
308
  position: absolute;
309
  left: 50%;
309
  left: 50%;
310
  top: 60%;
310
  top: 60%;
311
  width: 2em;
311
  width: 2em;
312
  height: 2em;
312
  height: 2em;
313
  margin-left: -1.3em;
313
  margin-left: -1.3em;
314
  margin-top: -1.3em;
314
  margin-top: -1.3em;
315
  border-radius: 50%;
315
  border-radius: 50%;
316
  border: 0.325em solid rgba(36, 63, 219, 0.33);
316
  border: 0.325em solid rgba(36, 63, 219, 0.33);
317
}
317
}
318
318
319
.charmed .circle:before {
319
.charmed .circle:before {
320
  position: absolute;
320
  position: absolute;
321
  left: 50%;
321
  left: 50%;
322
  top: 50%;
322
  top: 50%;
323
  width: 75%;
323
  width: 75%;
324
  height: 75%;
324
  height: 75%;
325
  margin-left: -1.7em;
325
  margin-left: -1.7em;
326
  margin-top: -0.7em;
326
  margin-top: -0.7em;
327
  border: 0.325em solid rgba(36, 63, 219, 0.33);
327
  border: 0.325em solid rgba(36, 63, 219, 0.33);
328
  border-radius: 100% 0;
328
  border-radius: 100% 0;
329
  content: "";
329
  content: "";
330
  <?php
330
  <?php
331
/*  
331
/*  
332
  -(moz-|webkit-|)transform: rotate(15deg);
332
  -(moz-|webkit-|)transform: rotate(15deg);
333
 */
333
 */
334
        Mixins::prefix_property('transform', '',
334
        Mixins::prefix_property('transform', '',
335
                'rotate(15deg)',
335
                'rotate(15deg)',
336
                array('-moz-', '-webkit-', ''));
336
                array('-moz-', '-webkit-', ''));
337
        ?>
337
        ?>
338
}
338
}
339
339
340
.charmed .circle:after {
340
.charmed .circle:after {
341
  position: absolute;
341
  position: absolute;
342
  left: 50%;
342
  left: 50%;
343
  top: 50%;
343
  top: 50%;
344
  width: 75%;
344
  width: 75%;
345
  height: 75%;
345
  height: 75%;
346
  margin-left: -1.05em;
346
  margin-left: -1.05em;
347
  margin-top: -1.85em;
347
  margin-top: -1.85em;
348
  border: 0.325em solid rgba(36, 63, 219, 0.33);
348
  border: 0.325em solid rgba(36, 63, 219, 0.33);
349
  border-radius: 100% 0;
349
  border-radius: 100% 0;
350
  content: "";
350
  content: "";
351
  <?php
351
  <?php
352
        Mixins::prefix_property('transform', '',
352
        Mixins::prefix_property('transform', '',
353
                'rotate(-45deg)',
353
                'rotate(-45deg)',
354
                array('-moz-', '-webkit-', ''));
354
                array('-moz-', '-webkit-', ''));
355
        ?>
355
        ?>
356
}
356
}
357
357
358
.charmed .arc3 {
358
.charmed .arc3 {
359
  position: absolute;
359
  position: absolute;
360
  left: 50%;
360
  left: 50%;
361
  top: 50%;
361
  top: 50%;
362
  width: 1.5em;
362
  width: 1.5em;
363
  height: 1.5em;
363
  height: 1.5em;
364
  margin-left: -0.3em;
364
  margin-left: -0.3em;
365
  margin-top: -0.3em;
365
  margin-top: -0.3em;
366
  border: 0.325em solid rgba(36, 63, 219, 0.33);
366
  border: 0.325em solid rgba(36, 63, 219, 0.33);
367
  border-radius: 0 100% 0 100%;
367
  border-radius: 0 100% 0 100%;
368
  content: "";
368
  content: "";
369
  <?php
369
  <?php
370
        Mixins::prefix_property('transform', '',
370
        Mixins::prefix_property('transform', '',
371
                'rotate(-15deg)',
371
                'rotate(-15deg)',
372
                array('-moz-', '-webkit-', ''));
372
                array('-moz-', '-webkit-', ''));
373
        ?>
373
        ?>
374
}
374
}
375
375
376
.charmed .c {
376
.charmed .c {
377
  /* font-size: 150%; */
377
  /* font-size: 150%; */
378
}
378
}
379
379
380
.charmed span {  
380
.charmed span {  
381
  position: relative;
381
  position: relative;
382
  /* vertical-align: middle; */
382
  /* vertical-align: middle; */
383
}
383
}
384
384
385
@font-face {
385
@font-face {
386
  font-family: "Coolvetica";
386
  font-family: "Coolvetica";
387
  src: local("Coolvetica"), url(/styles/fonts/non-free/coolvetica.ttf);
387
  src: local("Coolvetica"), url(/styles/fonts/non-free/coolvetica.ttf);
388
}
388
}
389
389
390
.columbo {
390
.columbo {
391
  padding: 0 0.25em;
391
  padding: 0 0.25em;
392
  background-color: #273d50;
392
  background-color: #273d50;
393
  color: #fde06c;
393
  color: #fde06c;
394
  font-family: "Coolvetica", sans-serif;
394
  font-family: "Coolvetica", sans-serif;
395
  font-size: 130%;
395
  font-size: 130%;
396
  letter-spacing: 0.0625em;
396
  letter-spacing: 0.0625em;
397
  text-transform: uppercase;
397
  text-transform: uppercase;
398
  text-shadow: 2px 2px 1px black;
398
  text-shadow: 2px 2px 1px black;
399
}
399
}
400
400
401
@font-face {
401
@font-face {
402
  font-family: "ITC Serif Gothic LT Bold";
402
  font-family: "ITC Serif Gothic LT Bold";
403
  src: url(/styles/fonts/non-free/itc_serif_gothic--lte50299.ttf);
403
  src: url(/styles/fonts/non-free/itc_serif_gothic--lte50299.ttf);
404
}
404
}
405
405
406
@font-face {
406
@font-face {
407
  font-family: "ITC Serif Gothic LT Heavy";
407
  font-family: "ITC Serif Gothic LT Heavy";
408
  src: url(/styles/fonts/non-free/itc_serif_gothic--lte50301.ttf);
408
  src: url(/styles/fonts/non-free/itc_serif_gothic--lte50301.ttf);
409
}
409
}
410
410
411
.countdown-x {
411
.countdown-x {
412
  display: inline-block;
412
  display: inline-block;
413
  font-family: "ITC Serif Gothic LT Heavy", sans-serif;
413
  font-family: "ITC Serif Gothic LT Heavy", sans-serif;
414
  line-height: 0.9em;
414
  line-height: 0.9em;
415
  text-align: center;
415
  text-align: center;
416
  text-shadow: 1px 1px #999;
416
  text-shadow: 1px 1px #999;
417
}
417
}
418
418
419
.countdown-x .title:before {
419
.countdown-x .title:before {
420
  content: "\2013\00A0";
420
  content: "\2013\00A0";
421
}
421
}
422
422
423
.countdown-x .subtitle {
423
.countdown-x .subtitle {
424
  display: block;
424
  display: block;
425
  font-family: "ITC Serif Gothic LT Bold", sans-serif;
425
  font-family: "ITC Serif Gothic LT Bold", sans-serif;
426
}
426
}
427
427
428
.dead-zone {
428
.dead-zone {
429
  display: inline-block;
429
  display: inline-block;
430
  background-color: black;
430
  background-color: black;
431
  background-image: -webkit-radial-gradient(50% 20%, 20% 100%, white, transparent 75%);
431
  background-image: -webkit-radial-gradient(50% 20%, 20% 100%, white, transparent 75%);
432
  color: white;
432
  color: white;
433
  font-family: serif;
433
  font-family: serif;
434
  font-size: 120%;
434
  font-size: 120%;
435
  font-weight: bold;
435
  font-weight: bold;
436
  line-height: 1;
436
  line-height: 1;
437
  text-align: center;
437
  text-align: center;
438
  text-transform: uppercase;
438
  text-transform: uppercase;
439
}
439
}
440
440
441
.dead-zone .text {
441
.dead-zone .text {
442
  display: block;
442
  display: block;
443
  margin-top: 1em;
443
  margin-top: 1em;
444
  padding: 0 1em;
444
  padding: 0 1em;
445
  background: white;
445
  background: white;
446
  background:
446
  background:
447
    -webkit-linear-gradient(-5deg, rgba(255, 255, 255, 0),
447
    -webkit-linear-gradient(-5deg, rgba(255, 255, 255, 0),
448
      rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)),
448
      rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)),
449
    -webkit-linear-gradient(5deg, rgba(255, 255, 255, 0),
449
    -webkit-linear-gradient(5deg, rgba(255, 255, 255, 0),
450
      rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
450
      rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
451
  background:
451
  background:
452
    linear-gradient(-5deg, rgba(255, 255, 255, 0),
452
    linear-gradient(-5deg, rgba(255, 255, 255, 0),
453
      rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)),
453
      rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)),
454
    linear-gradient(5deg, rgba(255, 255, 255, 0),
454
    linear-gradient(5deg, rgba(255, 255, 255, 0),
455
      rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
455
      rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
456
  color: black;
456
  color: black;
457
}
457
}
458
458
459
.dead-zone .text .dead {
459
.dead-zone .text .dead {
460
  display: block;
460
  display: block;
461
  top: -0.125em;
461
  top: -0.125em;
462
  position: relative;
462
  position: relative;
463
  font-size: 90%;
463
  font-size: 90%;
464
  color: #222;
464
  color: #222;
465
  text-shadow: 0 0 10px white;
465
  text-shadow: 0 0 10px white;
466
}
466
}
467
467
468
.dead-zone .text .zone {
468
.dead-zone .text .zone {
469
  display: block;
469
  display: block;
470
  position: relative;
470
  position: relative;
471
  top: -0.5em;
471
  top: -0.5em;
472
  font-size: 110%;
472
  font-size: 110%;
473
  <?php
473
  <?php
474
        Mixins::prefix_property('transform', '',
474
        Mixins::prefix_property('transform', '',
475
                'perspective(15px) rotateX(35deg)',
475
                'perspective(15px) rotateX(35deg)',
476
                array('-webkit-', ''));
476
                array('-webkit-', ''));
477
        ?>
477
        ?>
478
  -webkit-mask-image: -webkit-linear-gradient(
478
  -webkit-mask-image: -webkit-linear-gradient(
479
    rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.67));
479
    rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.67));
480
}
480
}
481
481
482
@font-face {
482
@font-face {
483
  font-family: "Doctor Who";
483
  font-family: "Doctor Who";
484
  src: local("Matt Smith Doctor Who"), url(/styles/fonts/matt_smith_doctor_who.ttf);
484
  src: local("Matt Smith Doctor Who"), url(/styles/fonts/matt_smith_doctor_who.ttf);
485
}
485
}
486
486
487
.doctor-who {
487
.doctor-who {
488
  position: relative;
488
  position: relative;
489
  color: #386688;
489
  color: #386688;
490
  font-family: "Doctor Who", serif;
490
  font-family: "Doctor Who", serif;
491
  font-size: 250%;
491
  font-size: 250%;
492
  text-transform: uppercase;
492
  text-transform: uppercase;
493
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
493
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
494
}
494
}
495
495
496
.doctor-who .gradient {
496
.doctor-who .gradient {
497
  position: absolute;
497
  position: absolute;
498
  left: 0;
498
  left: 0;
499
  top: 0;
499
  top: 0;
500
  -webkit-mask-image:
500
  -webkit-mask-image:
501
    -webkit-radial-gradient(0.15em 0.125em, 15% 50%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 1));
501
    -webkit-radial-gradient(0.15em 0.125em, 15% 50%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 1));
502
  z-index: 2;
502
  z-index: 2;
503
}
503
}
504
504
505
.doctor-who .gradient2 {
505
.doctor-who .gradient2 {
506
  -webkit-mask-image:
506
  -webkit-mask-image:
507
    -webkit-radial-gradient(1.2em 0.125em, 15% 50%, rgba(0, 0, 0, 0.2) 15%, rgba(0, 0, 0, 1));
507
    -webkit-radial-gradient(1.2em 0.125em, 15% 50%, rgba(0, 0, 0, 0.2) 15%, rgba(0, 0, 0, 1));
508
}
508
}
509
509
510
.doctor-who .gradient3 {
510
.doctor-who .gradient3 {
511
  -webkit-mask-image:
511
  -webkit-mask-image:
512
    -webkit-radial-gradient(2.4em 0.25em, 15% 50%, rgba(0, 0, 0, 0.2) 15%, rgba(0, 0, 0, 1));
512
    -webkit-radial-gradient(2.4em 0.25em, 15% 50%, rgba(0, 0, 0, 0.2) 15%, rgba(0, 0, 0, 1));
513
}
513
}
514
514
515
.doctor-who:after {
515
.doctor-who:after {
516
  content: "Doctor Who";
516
  content: "Doctor Who";
517
  color: #f7f9fb;
517
  color: #f7f9fb;
518
}
518
}
519
519
520
@font-face {
520
@font-face {
521
  font-family: "a_Futura Orto";
521
  font-family: "a_Futura Orto";
522
  src: local("Futura Orto"), url(/styles/fonts/a_futuraorto.ttf);
522
  src: local("Futura Orto"), url(/styles/fonts/a_futuraorto.ttf);
523
}
523
}
524
524
525
@font-face {
525
@font-face {
526
  font-family: "a_Futura Orto Bold";
526
  font-family: "a_Futura Orto Bold";
527
  src: local("Futura Orto Bold"), url(/styles/fonts/a_futuraorto_bold.ttf);
527
  src: local("Futura Orto Bold"), url(/styles/fonts/a_futuraorto_bold.ttf);
528
}
528
}
529
529
530
.efc {
530
.efc {
531
  position: relative;
531
  position: relative;
532
  display: inline-block;
532
  display: inline-block;
533
  background-color: #000;
533
  background-color: #000;
534
  background-image:
534
  background-image:
535
    /* Terra */
535
    /* Terra */
536
    -moz-radial-gradient(28.6541% -128%, circle, black 67%, #1C1F1C 71%, #394138 72.5%, transparent 73%),
536
    -moz-radial-gradient(28.6541% -128%, circle, black 67%, #1C1F1C 71%, #394138 72.5%, transparent 73%),
537
   
537
   
538
    /* Sol */
538
    /* Sol */
539
    -moz-radial-gradient(56.729378% 52.895753%, circle, #fafdfa 7.366136%, #f9c699 9%, transparent 33%);
539
    -moz-radial-gradient(56.729378% 52.895753%, circle, #fafdfa 7.366136%, #f9c699 9%, transparent 33%);
540
  background-image:
540
  background-image:
541
    /* Terra */
541
    /* Terra */
542
    -webkit-radial-gradient(28.654124% -155%, circle, black 67%, #1c1f1c 71%, #394138 72.5%, transparent 73%),
542
    -webkit-radial-gradient(28.654124% -155%, circle, black 67%, #1c1f1c 71%, #394138 72.5%, transparent 73%),
543
   
543
   
544
    /* Sol */
544
    /* Sol */
545
    -webkit-radial-gradient(55.137482% 42.084942%, circle, #fafdfa 7.366136%, #f9c699 9%, transparent 33%);
545
    -webkit-radial-gradient(55.137482% 42.084942%, circle, #fafdfa 7.366136%, #f9c699 9%, transparent 33%);
546
  color: #eeeeec;
546
  color: #eeeeec;
547
  font-family: "a_Futura Orto Bold", sans-serif;
547
  font-family: "a_Futura Orto Bold", sans-serif;
548
  line-height: 1em;
548
  line-height: 1em;
549
  text-align: center;
549
  text-align: center;
550
  text-transform: uppercase;
550
  text-transform: uppercase;
551
}
551
}
552
552
553
.efc .glare {
553
.efc .glare {
554
  position: absolute;
554
  position: absolute;
555
  left: 0;
555
  left: 0;
556
  right: 0;
556
  right: 0;
557
  top: 0;
557
  top: 0;
558
  bottom: 0;
558
  bottom: 0;
559
  background-image: -webkit-radial-gradient(56% 43%, 50% 8%, #fafdfa 14%, rgb(249, 198, 153) 15%, rgba(249, 198, 153, 0) 30%);
559
  background-image: -webkit-radial-gradient(56% 43%, 50% 8%, #fafdfa 14%, rgb(249, 198, 153) 15%, rgba(249, 198, 153, 0) 30%);
560
  -webkit-transform: rotate(-11.5deg);
560
  -webkit-transform: rotate(-11.5deg);
561
}
561
}
562
562
563
.efc:after {
563
.efc:after {
564
  position: absolute;
564
  position: absolute;
565
  left: 0;
565
  left: 0;
566
  right: 0;
566
  right: 0;
567
  top: 0;
567
  top: 0;
568
  bottom: 0;
568
  bottom: 0;
569
  content: "";
569
  content: "";
570
  background-image:
570
  background-image:
571
    -moz-radial-gradient(55.137482% 42.084942%,
571
    -moz-radial-gradient(55.137482% 42.084942%,
572
      rgba(255, 255, 255, 0.2) 18%,
572
      rgba(255, 255, 255, 0.2) 18%,
573
      rgba(255, 255, 255, 0.04));
573
      rgba(255, 255, 255, 0.04));
574
  background-image:
574
  background-image:
575
    -webkit-radial-gradient(55.137482% 42.084942%, rgba(255, 255, 255, 0.2) 18%, rgba(255, 255, 255, 0.04));
575
    -webkit-radial-gradient(55.137482% 42.084942%, rgba(255, 255, 255, 0.2) 18%, rgba(255, 255, 255, 0.04));
576
}
576
}
577
577
578
.efc .gr {
578
.efc .gr {
579
  display: block;
579
  display: block;
580
  margin-top: 1em;  
580
  margin-top: 1em;  
581
  margin-bottom: 2.5em;
581
  margin-bottom: 2.5em;
582
  font-family: "a_Futura Orto", sans-serif;
582
  font-family: "a_Futura Orto", sans-serif;
583
  font-size: 50%;
583
  font-size: 50%;
584
}
584
}
585
585
586
.efc .earth {
586
.efc .earth {
587
  position: relative;
587
  position: relative;
588
  display: block;
588
  display: block;
589
  padding: 0 0 0 0.35em;
589
  padding: 0 0 0 0.35em;
590
  font-size: x-large;
590
  font-size: x-large;
591
  letter-spacing: 0.35em;
591
  letter-spacing: 0.35em;
592
  color: #efd065;
592
  color: #efd065;
593
  line-height: 1em;
593
  line-height: 1em;
594
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.75);
594
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.75);
595
}
595
}
596
596
597
.earth .gradient {
597
.earth .gradient {
598
  position: absolute;
598
  position: absolute;
599
  padding: 0 0 0 0.35em;
599
  padding: 0 0 0 0.35em;
600
  left: 0;
600
  left: 0;
601
  top: 0;
601
  top: 0;
602
  -webkit-mask-image: -webkit-linear-gradient(
602
  -webkit-mask-image: -webkit-linear-gradient(
603
    rgba(255, 255, 255, 1), rgba(243, 205, 98, 0.5) 50%, rgba(0, 0, 0, 0));
603
    rgba(255, 255, 255, 1), rgba(243, 205, 98, 0.5) 50%, rgba(0, 0, 0, 0));
604
  z-index: 2;
604
  z-index: 2;
605
}
605
}
606
606
607
.efc .earth:after {
607
.efc .earth:after {
608
  content: "Earth";
608
  content: "Earth";
609
  color: #9b411a;
609
  color: #9b411a;
610
}
610
}
611
611
612
@font-face {
612
@font-face {
613
  font-family: "Troglodyte";
613
  font-family: "Troglodyte";
614
  src: local("Troglodyte"), url(/styles/fonts/TROGLO__.ttf);
614
  src: local("Troglodyte"), url(/styles/fonts/TROGLO__.ttf);
615
}
615
}
616
616
617
.efc .fc {
617
.efc .fc {
618
  position: relative;
618
  position: relative;
619
  top: -0.5em;
619
  top: -0.5em;
620
  display: block;
620
  display: block;
621
  color: #ac493d;
621
  color: #ac493d;
622
  font-family: "Troglodyte", sans-serif;
622
  font-family: "Troglodyte", sans-serif;
623
  font-size: 71%;
623
  font-size: 71%;
624
  line-height: normal;
624
  line-height: normal;
625
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
625
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
626
}
626
}
627
627
628
@font-face {
628
@font-face {
629
  font-family: "Interstate";
629
  font-family: "Interstate";
630
  src: local("Interstate"), url(/styles/fonts/non-free/interstate_ultra-black_condensed.ttf);
630
  src: local("Interstate"), url(/styles/fonts/non-free/interstate_ultra-black_condensed.ttf);
631
}
631
}
632
632
633
.eureka {
633
.eureka {
634
  position: relative;
634
  position: relative;
635
  padding: 0.25em 0.5em 0.125em 0.5em;
635
  padding: 0.25em 0.5em 0.125em 0.5em;
636
  font-family: "Interstate", sans-serif;
636
  font-family: "Interstate", sans-serif;
637
  font-size: 130%;
637
  font-size: 130%;
638
  background-color: #8de5f9;
638
  background-color: #8de5f9;
639
  background-image: -moz-radial-gradient(bottom, ellipse,
639
  background-image: -moz-radial-gradient(bottom, ellipse,
640
    #f4fff7 20%, #8de5f9, #285e8d);
640
    #f4fff7 20%, #8de5f9, #285e8d);
641
  background-image: -webkit-radial-gradient(bottom, 100% 125%,
641
  background-image: -webkit-radial-gradient(bottom, 100% 125%,
642
    #f4fff7 20%, #8de5f9, #285e8d);
642
    #f4fff7 20%, #8de5f9, #285e8d);
643
  color: rgb(251, 254, 247);
643
  color: rgb(251, 254, 247);
644
  color: rgba(255, 255, 255, 0.9);
644
  color: rgba(255, 255, 255, 0.9);
645
  text-shadow: 0 -1px rgb(77, 148, 168), 1px 0 1px rgb(168, 217, 231),
645
  text-shadow: 0 -1px rgb(77, 148, 168), 1px 0 1px rgb(168, 217, 231),
646
    1px -1px rgb(77, 148, 168);
646
    1px -1px rgb(77, 148, 168);
647
  text-shadow: 0 -1px rgba(77, 148, 168, 0.9), 1px 0 1px rgba(168, 217, 231, 0.9),
647
  text-shadow: 0 -1px rgba(77, 148, 168, 0.9), 1px 0 1px rgba(168, 217, 231, 0.9),
648
    1px -1px rgba(77, 148, 168, 0.9);
648
    1px -1px rgba(77, 148, 168, 0.9);
649
}
649
}
650
650
651
.eureka .gradient {
651
.eureka .gradient {
652
  display: inline-block;
652
  display: inline-block;
653
  <?php
653
  <?php
654
    Mixins::prefix_property('transform', '',
654
    Mixins::prefix_property('transform', '',
655
        'matrix(1, 0, 0, 0.9, 0, 0)',
655
        'matrix(1, 0, 0, 0.9, 0, 0)',
656
        array('-moz-', '-webkit-', ''));
656
        array('-moz-', '-webkit-', ''));
657
  ?>
657
  ?>
658
/*
658
/*
659
  position: absolute;
659
  position: absolute;
660
  padding: 0.25em 0.5em 0.125em 0.5em;
660
  padding: 0.25em 0.5em 0.125em 0.5em;
661
  left: 0;
661
  left: 0;
662
  top: 0;
662
  top: 0;
663
  -webkit-mask-image: -webkit-linear-gradient(
663
  -webkit-mask-image: -webkit-linear-gradient(
664
    rgba(0, 0, 0, 1) 30%, transparent 55%, rgba(0, 0, 0, 1) 80%);
664
    rgba(0, 0, 0, 1) 30%, transparent 55%, rgba(0, 0, 0, 1) 80%);
665
  z-index: 2;
665
  z-index: 2;
666
*/
666
*/
667
}
667
}
668
/*
668
/*
669
.eureka:after {
669
.eureka:after {
670
  content: "EUReKA";
670
  content: "EUReKA";
671
  color: red;
671
  color: red;
672
}
672
}
673
*/
673
*/
674
674
675
.eureka .eur {
675
.eureka .eur {
676
  text-transform: uppercase;
676
  text-transform: uppercase;
677
}
677
}
678
678
679
.eureka .e {
679
.eureka .e {
680
  display: inline-block;
680
  display: inline-block;
681
  position: relative;
681
  position: relative;
682
  bottom: 0.25em;
682
  bottom: 0.25em;
683
  text-shadow: 0 1px 1px rgb(168, 217, 231), 0 1px rgb(77, 148, 168);
683
  text-shadow: 0 1px 1px rgb(168, 217, 231), 0 1px rgb(77, 148, 168);
684
  text-shadow: 0 1px 1px rgba(168, 217, 231, 0.9), 0 1px rgba(77, 148, 168, 0.9);
684
  text-shadow: 0 1px 1px rgba(168, 217, 231, 0.9), 0 1px rgba(77, 148, 168, 0.9);
685
 
685
 
686
  -moz-transform: matrix(1, 0, 0, 0.9, 0, 0);
686
  -moz-transform: matrix(1, 0, 0, 0.9, 0, 0);
687
  -moz-transform: perspective(50px) rotateX(45deg);
687
  -moz-transform: perspective(50px) rotateX(45deg);
688
  -o-transform: matrix(1, 0, 0, 0.9, 0, 0);
688
  -o-transform: matrix(1, 0, 0, 0.9, 0, 0);
689
  -ms-transform: matrix(1, 0, 0, 0.9, 0, 0);
689
  -ms-transform: matrix(1, 0, 0, 0.9, 0, 0);
690
  -webkit-transform: perspective(50px) rotateX(45deg);
690
  -webkit-transform: perspective(50px) rotateX(45deg);
691
  transform: perspective(50px) rotateX(45deg);
691
  transform: perspective(50px) rotateX(45deg);
692
}
692
}
693
693
694
.eureka .ka {
694
.eureka .ka {
695
  text-shadow: -1px 0 1px rgb(168, 217, 231), -1px -1px rgb(77, 148, 168),
695
  text-shadow: -1px 0 1px rgb(168, 217, 231), -1px -1px rgb(77, 148, 168),
696
    0 -1px rgb(77, 148, 168);
696
    0 -1px rgb(77, 148, 168);
697
  text-shadow: -1px 0 1px rgba(168, 217, 231, 0.9), -1px -1px rgba(77, 148, 168, 0.9),
697
  text-shadow: -1px 0 1px rgba(168, 217, 231, 0.9), -1px -1px rgba(77, 148, 168, 0.9),
698
    0 -1px rgba(77, 148, 168, 0.9);  
698
    0 -1px rgba(77, 148, 168, 0.9);  
699
  text-transform: uppercase;
699
  text-transform: uppercase;
700
}
700
}
701
701
702
@font-face {
702
@font-face {
703
  font-family: "Marriage-Script";
703
  font-family: "Marriage-Script";
704
  font-weight: normal;
704
  font-weight: normal;
705
  src: local("Marriage-Script"), url(/styles/fonts/MARRIAGE.TTF);
705
  src: local("Marriage-Script"), url(/styles/fonts/MARRIAGE.TTF);
706
}
706
}
707
707
708
.firefly {
708
.firefly {
709
  display: inline-block;
709
  display: inline-block;
710
  padding: 0.4em 0.8em 0.4em 0.95em;
710
  padding: 0.4em 0.8em 0.4em 0.95em;
711
  background-color: #762109;
711
  background-color: #762109;
712
  <?php
712
  <?php
713
    Mixins::linear_gradient('background-image',
713
    Mixins::linear_gradient('background-image',
714
        'rgba(73, 1, 2, 0.8) 15%,
714
        'rgba(73, 1, 2, 0.8) 15%,
715
         rgba(155, 73, 49, 0) 15%, rgba(155, 73, 49, 0) 85%,
715
         rgba(155, 73, 49, 0) 15%, rgba(155, 73, 49, 0) 85%,
716
         rgba(73, 1, 2, 0.8) 85%, rgba(73, 1, 2, 0.8)');
716
         rgba(73, 1, 2, 0.8) 85%, rgba(73, 1, 2, 0.8)');
717
  ?>
717
  ?>
718
        color: #fefcff;
718
        color: #fefcff;
719
  font-family: "Marriage-Script", cursive;
719
  font-family: "Marriage-Script", cursive;
720
  font-size: 160%;
720
  font-size: 160%;
721
  text-shadow: -1px 0px 1px #300202, 2px 2px 4px #fed700, 0px 0px 4px #270201;
721
  text-shadow: -1px 0px 1px #300202, 2px 2px 4px #fed700, 0px 0px 4px #270201;
722
  text-transform: lowercase;
722
  text-transform: lowercase;
723
}
723
}
724
724
725
.firefly .e {
725
.firefly .e {
726
  text-shadow: 0px 0px 4px #fed700;
726
  text-shadow: 0px 0px 4px #fed700;
727
}
727
}
728
728
729
@font-face {
729
@font-face {
730
  font-family: "Middleton";
730
  font-family: "Middleton";
731
  src: url(/styles/fonts/non-free/middleto.ttf);
731
  src: url(/styles/fonts/non-free/middleto.ttf);
732
}
732
}
733
733
734
.frasier {
734
.frasier {
735
  font-family: "Middleton", sans-serif;
735
  font-family: "Middleton", sans-serif;
736
  font-size: 120%;
736
  font-size: 120%;
737
  text-transform: uppercase;
737
  text-transform: uppercase;
738
}
738
}
739
739
740
.frasier span {
740
.frasier span {
741
  font-size: 75%;
741
  font-size: 75%;
742
}
742
}
743
743
744
.fresh-hell {
744
.fresh-hell {
745
  position: relative;
745
  position: relative;
746
  background-color: white;
746
  background-color: white;
747
  color: #fff900;
747
  color: #fff900;
748
  font-family: Kruella, fantasy;
748
  font-family: Kruella, fantasy;
749
  font-size: 150%;
749
  font-size: 150%;
750
  text-transform: uppercase;
750
  text-transform: uppercase;
751
  white-space: nowrap;
751
  white-space: nowrap;
752
  -webkit-text-stroke: 0.25px #333;
752
  -webkit-text-stroke: 0.25px #333;
753
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
753
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
754
}
754
}
755
755
756
.fresh-hell .gradient {
756
.fresh-hell .gradient {
757
  position: absolute;
757
  position: absolute;
758
  left: 0;
758
  left: 0;
759
  top: 0;
759
  top: 0;
760
  -webkit-mask-image: -webkit-linear-gradient(
760
  -webkit-mask-image: -webkit-linear-gradient(
761
    rgba(0, 0, 0, 1), transparent);
761
    rgba(0, 0, 0, 1), transparent);
762
  z-index: 2;
762
  z-index: 2;
763
}
763
}
764
764
765
.fresh-hell:after {
765
.fresh-hell:after {
766
  content: "Fresh Hell";
766
  content: "Fresh Hell";
767
  color: #bf170a;
767
  color: #bf170a;
768
}
768
}
769
769
770
@font-face {
770
@font-face {
771
  font-family: "Century Gothic";
771
  font-family: "Century Gothic";
772
  src: local("Century Gothic"), url(/styles/fonts/non-free/Century_Gothic.TTF);
772
  src: local("Century Gothic"), url(/styles/fonts/non-free/Century_Gothic.TTF);
773
}
773
}
774
774
775
.fringe {
775
.fringe {
776
  display: inline-block;
776
  display: inline-block;
777
  padding: 0.125em 0.5em 0.125em 0.5em;
777
  padding: 0.125em 0.5em 0.125em 0.5em;
778
  background-color: #000;
778
  background-color: #000;
779
  background-image: -moz-radial-gradient(center, #D6DBD3 4%, #7d9b9d 60%, black);
779
  background-image: -moz-radial-gradient(center, #D6DBD3 4%, #7d9b9d 60%, black);
780
  background-image: -webkit-radial-gradient(center, 67% 67%, #D6DBD3 4%, #7d9b9d 60%, black);
780
  background-image: -webkit-radial-gradient(center, 67% 67%, #D6DBD3 4%, #7d9b9d 60%, black);
781
  color: #101811;
781
  color: #101811;
782
  font-family: "Century Gothic", sans-serif;
782
  font-family: "Century Gothic", sans-serif;
783
  font-weight: bolder;
783
  font-weight: bolder;
784
  font-size: 140%;
784
  font-size: 140%;
785
  text-transform: uppercase;
785
  text-transform: uppercase;
786
}
786
}
787
787
788
.fringe .gradient {
788
.fringe .gradient {
789
  display: inline-block;
789
  display: inline-block;
790
  /*
790
  /*
791
  -webkit-mask-image: -webkit-radial-gradient(center, 150% 150%,
791
  -webkit-mask-image: -webkit-radial-gradient(center, 150% 150%,
792
    rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.125));
792
    rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.125));
793
  */
793
  */
794
        <?php
794
        <?php
795
          Mixins::prefix_property('transform', '',
795
          Mixins::prefix_property('transform', '',
796
                'perspective(50px) rotateX(4.43deg)',
796
                'perspective(50px) rotateX(4.43deg)',
797
                array('-moz-', '-webkit-', ''));
797
                array('-moz-', '-webkit-', ''));
798
        ?>
798
        ?>
799
}
799
}
800
800
801
.fringe .f {
801
.fringe .f {
802
  display: inline-block;
802
  display: inline-block;
803
803
804
  /*-webkit-transform: matrix(1, 0, -0.06, 1, 0, 0);*/
804
  /*-webkit-transform: matrix(1, 0, -0.06, 1, 0, 0);*/
805
  text-shadow:
805
  text-shadow:
806
     0.5px   0.25px #5b6e65,
806
     0.5px   0.25px #5b6e65,
807
     0.75px  0.5px  #5b6e65,
807
     0.75px  0.5px  #5b6e65,
808
     1.25px  0.75px #5b6e65,
808
     1.25px  0.75px #5b6e65,
809
     1.5px   1.25px #5b6e65,
809
     1.5px   1.25px #5b6e65,
810
     1.75px  1.5px  #5b6e65,
810
     1.75px  1.5px  #5b6e65,
811
     2px     1.75px #5b6e65,
811
     2px     1.75px #5b6e65,
812
     2.25px     2px #5b6e65;
812
     2.25px     2px #5b6e65;
813
 
813
 
814
  /* text-shadow: 1px 0.75px 2px #5b6e65, 1px 1.75px 0px #758278; */
814
  /* text-shadow: 1px 0.75px 2px #5b6e65, 1px 1.75px 0px #758278; */
815
  /* shadow-pos: y = -0.83909963 * x */
815
  /* shadow-pos: y = -0.83909963 * x */
816
/*
816
/*
817
  text-shadow: 0.5px 0.25px #111910, 0.75px 0.5px #111910,
817
  text-shadow: 0.5px 0.25px #111910, 0.75px 0.5px #111910,
818
    1.25px 0.75px #111910, 1.5px 1.25px #111910, 1.75px 1.5px #111910,
818
    1.25px 0.75px #111910, 1.5px 1.25px #111910, 1.75px 1.5px #111910,
819
    1.75px 1.5px #111910, 2.25px 1.75px #111910;
819
    1.75px 1.5px #111910, 2.25px 1.75px #111910;
820
 */    
820
 */    
821
}
821
}
822
822
823
.fringe .r {
823
.fringe .r {
824
  display: inline-block;
824
  display: inline-block;
825
  /*-webkit-transform: matrix(1, 0, -0.04, 1, 0, 0);*/
825
  /*-webkit-transform: matrix(1, 0, -0.04, 1, 0, 0);*/
826
  /*
826
  /*
827
  text-shadow:
827
  text-shadow:
828
     0.25px   0.25px $fringe_shadow,
828
     0.25px   0.25px $fringe_shadow,
829
     0.5px    0.5px  $fringe_shadow,
829
     0.5px    0.5px  $fringe_shadow,
830
     1px      0.75px $fringe_shadow,
830
     1px      0.75px $fringe_shadow,
831
     1.25px   1.25px $fringe_shadow,
831
     1.25px   1.25px $fringe_shadow,
832
     1.5px    1.5px  $fringe_shadow,
832
     1.5px    1.5px  $fringe_shadow,
833
     1.75px   1.75px $fringe_shadow,
833
     1.75px   1.75px $fringe_shadow,
834
     2px      2px    $fringe_shadow;
834
     2px      2px    $fringe_shadow;
835
  */
835
  */
836
  /* Same shadow as .f */
836
  /* Same shadow as .f */
837
  text-shadow:
837
  text-shadow:
838
     0.5px   0.25px #5b6e65,
838
     0.5px   0.25px #5b6e65,
839
     0.75px  0.5px  #5b6e65,
839
     0.75px  0.5px  #5b6e65,
840
     1.25px  0.75px #5b6e65,
840
     1.25px  0.75px #5b6e65,
841
     1.5px   1.25px #5b6e65,
841
     1.5px   1.25px #5b6e65,
842
     1.75px  1.5px  #5b6e65,
842
     1.75px  1.5px  #5b6e65,
843
     2px     1.75px #5b6e65,
843
     2px     1.75px #5b6e65,
844
     2.25px     2px #5b6e65;
844
     2.25px     2px #5b6e65;
845
}
845
}
846
846
847
.fringe .i {
847
.fringe .i {
848
  display: inline-block;
848
  display: inline-block;
849
  /* -webkit-transform: matrix(1, 0, -0.02, 1, 0, 0); */
849
  /* -webkit-transform: matrix(1, 0, -0.02, 1, 0, 0); */
850
  /*
850
  /*
851
  text-shadow:
851
  text-shadow:
852
     0      0.25px $fringe_shadow,
852
     0      0.25px $fringe_shadow,
853
     0.5px  0.5px  $fringe_shadow,
853
     0.5px  0.5px  $fringe_shadow,
854
     0.75px 0.75px $fringe_shadow,
854
     0.75px 0.75px $fringe_shadow,
855
     1px    1.25px $fringe_shadow,
855
     1px    1.25px $fringe_shadow,
856
     1.25px 1.5px  $fringe_shadow,
856
     1.25px 1.5px  $fringe_shadow,
857
     1.5px  1.75px $fringe_shadow,
857
     1.5px  1.75px $fringe_shadow,
858
     1.75px 2px    $fringe_shadow;
858
     1.75px 2px    $fringe_shadow;
859
   */
859
   */
860
  /* Same shadow as .f */
860
  /* Same shadow as .f */
861
  text-shadow:
861
  text-shadow:
862
     0.5px   0.25px #5b6e65,
862
     0.5px   0.25px #5b6e65,
863
     0.75px  0.5px  #5b6e65,
863
     0.75px  0.5px  #5b6e65,
864
     1.25px  0.75px #5b6e65,
864
     1.25px  0.75px #5b6e65,
865
     1.5px   1.25px #5b6e65,
865
     1.5px   1.25px #5b6e65,
866
     1.75px  1.5px  #5b6e65,
866
     1.75px  1.5px  #5b6e65,
867
     2px     1.75px #5b6e65,
867
     2px     1.75px #5b6e65,
868
     2.25px     2px #5b6e65;
868
     2.25px     2px #5b6e65;
869
}
869
}
870
870
871
.fringe .n {
871
.fringe .n {
872
  display: inline-block;
872
  display: inline-block;
873
  /*- webkit-transform: matrix(1, 0, -0.01, 1, 0, 0); */
873
  /*- webkit-transform: matrix(1, 0, -0.01, 1, 0, 0); */
874
  text-shadow:
874
  text-shadow:
875
    0  0.25px #5b6e65,
875
    0  0.25px #5b6e65,
876
    0  0.5px  #5b6e65,
876
    0  0.5px  #5b6e65,
877
    0  0.75px #5b6e65,
877
    0  0.75px #5b6e65,
878
    0  1.25px #5b6e65,
878
    0  1.25px #5b6e65,
879
    0  1.5px  #5b6e65,
879
    0  1.5px  #5b6e65,
880
    0  1.75px #5b6e65,
880
    0  1.75px #5b6e65,
881
    0  2px    #5b6e65;
881
    0  2px    #5b6e65;
882
}
882
}
883
883
884
.fringe .g {
884
.fringe .g {
885
  display: inline-block;
885
  display: inline-block;
886
  /* -webkit-transform: matrix(1, 0, 0.01, 1, 0, 0); */
886
  /* -webkit-transform: matrix(1, 0, 0.01, 1, 0, 0); */
887
  /* text-shadow:
887
  /* text-shadow:
888
      0      0.25px $fringe_shadow,
888
      0      0.25px $fringe_shadow,
889
     -0.5px  0.5px  $fringe_shadow,
889
     -0.5px  0.5px  $fringe_shadow,
890
     -0.75px 0.75px $fringe_shadow,
890
     -0.75px 0.75px $fringe_shadow,
891
     -1px    1.25px $fringe_shadow,
891
     -1px    1.25px $fringe_shadow,
892
     -1.25px 1.5px  $fringe_shadow,
892
     -1.25px 1.5px  $fringe_shadow,
893
     -1.5px  1.75px $fringe_shadow,
893
     -1.5px  1.75px $fringe_shadow,
894
     -1.75px 2px    $fringe_shadow; */
894
     -1.75px 2px    $fringe_shadow; */
895
  /* Same shadow as .e */
895
  /* Same shadow as .e */
896
  text-shadow:
896
  text-shadow:
897
    -0.25px 0.25px #5b6e65,
897
    -0.25px 0.25px #5b6e65,
898
    -0.5px  0.5px  #5b6e65,
898
    -0.5px  0.5px  #5b6e65,
899
    -1px    0.75px #5b6e65,
899
    -1px    0.75px #5b6e65,
900
    -1.25px 1.25px #5b6e65,
900
    -1.25px 1.25px #5b6e65,
901
    -1.5px  1.5px  #5b6e65,
901
    -1.5px  1.5px  #5b6e65,
902
    -1.75px 1.75px #5b6e65,
902
    -1.75px 1.75px #5b6e65,
903
    -2px    2px    #5b6e65;
903
    -2px    2px    #5b6e65;
904
}
904
}
905
905
906
.fringe .e {
906
.fringe .e {
907
  display: inline-block;
907
  display: inline-block;
908
  /* -webkit-transform: matrix(1, 0, 0.02, 1, 0, 0); */
908
  /* -webkit-transform: matrix(1, 0, 0.02, 1, 0, 0); */
909
  text-shadow:
909
  text-shadow:
910
    -0.25px 0.25px #5b6e65,
910
    -0.25px 0.25px #5b6e65,
911
    -0.5px  0.5px  #5b6e65,
911
    -0.5px  0.5px  #5b6e65,
912
    -1px    0.75px #5b6e65,
912
    -1px    0.75px #5b6e65,
913
    -1.25px 1.25px #5b6e65,
913
    -1.25px 1.25px #5b6e65,
914
    -1.5px  1.5px  #5b6e65,
914
    -1.5px  1.5px  #5b6e65,
915
    -1.75px 1.75px #5b6e65,
915
    -1.75px 1.75px #5b6e65,
916
    -2px    2px    #5b6e65;
916
    -2px    2px    #5b6e65;
917
}
917
}
918
918
919
@font-face {
919
@font-face {
920
  font-family: "Futurama Title";
920
  font-family: "Futurama Title";
921
  src: local("Futurama Title"), url(/styles/fonts/futurama-title.ttf);
921
  src: local("Futurama Title"), url(/styles/fonts/futurama-title.ttf);
922
}
922
}
923
923
924
.futurama {
924
.futurama {
925
  display: block;
925
  display: block;
926
  padding-top: 0.5em;
926
  padding-top: 0.5em;
927
  font-family: "Futurama Title", serif;
927
  font-family: "Futurama Title", serif;
928
  text-transform: uppercase;
928
  text-transform: uppercase;
929
  line-height: 1em;
929
  line-height: 1em;
930
  -webkit-transform: translateX(-0.67em);
930
  -webkit-transform: translateX(-0.67em);
931
}
931
}
932
932
933
.futurama span {
933
.futurama span {
934
  display: inline-block;
934
  display: inline-block;
935
   line-height: 1em;
935
   line-height: 1em;
936
}
936
}
937
937
938
.futurama .f {
938
.futurama .f {
939
  -webkit-transform: rotate(-36deg) translateY(0.125em);
939
  -webkit-transform: rotate(-36deg) translateY(0.125em);
940
}
940
}
941
941
942
.futurama .u {
942
.futurama .u {
943
  -webkit-transform: rotate(-25.7deg) translateX(0.25em) translateY(-0.25em);
943
  -webkit-transform: rotate(-25.7deg) translateX(0.25em) translateY(-0.25em);
944
}
944
}
945
945
946
.futurama .t {
946
.futurama .t {
947
  -webkit-transform: rotate(-15.4deg) translateX(0.33em) translateY(-0.625em);
947
  -webkit-transform: rotate(-15.4deg) translateX(0.33em) translateY(-0.625em);
948
}
948
}
949
949
950
.futurama .u2 {
950
.futurama .u2 {
951
  -webkit-transform: rotate(-5.1deg) translateX(0.4em) translateY(-0.825em);
951
  -webkit-transform: rotate(-5.1deg) translateX(0.4em) translateY(-0.825em);
952
}
952
}
953
953
954
.futurama .r {
954
.futurama .r {
955
  -webkit-transform: rotate(5.1deg) translateX(0.45em) translateY(-0.95em);
955
  -webkit-transform: rotate(5.1deg) translateX(0.45em) translateY(-0.95em);
956
}
956
}
957
957
958
.futurama .a {
958
.futurama .a {
959
  -webkit-transform: rotate(15.4deg) translateX(0.5em) translateY(-0.9em);
959
  -webkit-transform: rotate(15.4deg) translateX(0.5em) translateY(-0.9em);
960
}
960
}
961
961
962
.futurama .m {
962
.futurama .m {
963
  -webkit-transform: rotate(25.7deg) translateX(0.55em) translateY(-0.7em);
963
  -webkit-transform: rotate(25.7deg) translateX(0.55em) translateY(-0.7em);
964
}
964
}
965
965
966
.futurama .a2 {
966
.futurama .a2 {
967
  -webkit-transform: rotate(36deg) translateX(0.67em) translateY(-0.4em);
967
  -webkit-transform: rotate(36deg) translateX(0.67em) translateY(-0.4em);
968
}
968
}
969
969
970
@font-face {
970
@font-face {
971
  font-family: "ITC Avant Garde Gothic Medium";
971
  font-family: "ITC Avant Garde Gothic Medium";
972
  src: local("ITC Avant Garde Gothic Medium"), local("ITC Avant Garde Gothic"),
972
  src: local("ITC Avant Garde Gothic Medium"), local("ITC Avant Garde Gothic"),
973
    url(/styles/fonts/non-free/itc_avant_garde_gothic--lte52011.ttf);
973
    url(/styles/fonts/non-free/itc_avant_garde_gothic--lte52011.ttf);
974
}
974
}
975
975
976
.glee {
976
.glee {
977
  padding: 0.125em 0.5em;
977
  padding: 0.125em 0.5em;
978
  /* background-image: -moz-radial-gradient(#FFEA8C, #FFD727);
978
  /* background-image: -moz-radial-gradient(#FFEA8C, #FFD727);
979
  background-image: -webkit-radial-gradient(#FFEA8C, #FFD727);
979
  background-image: -webkit-radial-gradient(#FFEA8C, #FFD727);
980
  background-color: #FFD727; */
980
  background-color: #FFD727; */
981
  background-color: #000;
981
  background-color: #000;
982
  color: #fff;
982
  color: #fff;
983
  font-family: "ITC Avant Garde Gothic Medium", sans-serif;
983
  font-family: "ITC Avant Garde Gothic Medium", sans-serif;
984
  font-size: 120%;
984
  font-size: 120%;
985
  text-transform: lowercase;
985
  text-transform: lowercase;
986
  letter-spacing: -0.0625em;
986
  letter-spacing: -0.0625em;
987
}
987
}
988
988
989
.glee .lee {
989
.glee .lee {
990
  letter-spacing: -0.125em;
990
  letter-spacing: -0.125em;
991
}
991
}
992
992
993
@font-face {
993
@font-face {
994
  font-family: "SKM Avant Garde Two";
994
  font-family: "SKM Avant Garde Two";
995
  src: local("SKM Avant Garde Two"), url(/styles/fonts/non-free/SKM%20Avant%20Garde%20Two.ttf);
995
  src: local("SKM Avant Garde Two"), url(/styles/fonts/non-free/SKM%20Avant%20Garde%20Two.ttf);
996
}
996
}
997
997
998
.heroes {
998
.heroes {
999
  position: relative;
999
  position: relative;
1000
  padding: 0.25em 0.75em 0.125em 0.75em;
1000
  padding: 0.25em 0.75em 0.125em 0.75em;
1001
  background-color: black;
1001
  background-color: black;
1002
  color: #fff;
1002
  color: #fff;
1003
  font-family: "SKM Avant Garde Two", sans-serif;
1003
  font-family: "SKM Avant Garde Two", sans-serif;
1004
  text-transform: uppercase;
1004
  text-transform: uppercase;
1005
  letter-spacing: 0.5em;
1005
  letter-spacing: 0.5em;
1006
}
1006
}
1007
1007
1008
.heroes .o {
1008
.heroes .o {
1009
  position: relative;
1009
  position: relative;
1010
  color: #ffffed;
1010
  color: #ffffed;
1011
  padding: 0.25em 0.125em;
1011
  padding: 0.25em 0.125em;
1012
}
1012
}
1013
1013
1014
.heroes .o:after {
1014
.heroes .o:after {
1015
  position: absolute;
1015
  position: absolute;
1016
  left: -0.25em;
1016
  left: -0.25em;
1017
  top: 0;
1017
  top: 0;
1018
  right: 0;
1018
  right: 0;
1019
  bottom: 0;
1019
  bottom: 0;
1020
  background-image:
1020
  background-image:
1021
    /* glare */
1021
    /* glare */
1022
    -webkit-radial-gradient(48% 20%, circle, #ffffff 0%, #ffffff 7%,
1022
    -webkit-radial-gradient(48% 20%, circle, #ffffff 0%, #ffffff 7%,
1023
      rgb(250, 226, 182) 8%, rgba(250, 226, 182, 0) 23%),
1023
      rgb(250, 226, 182) 8%, rgba(250, 226, 182, 0) 23%),
1024
     
1024
     
1025
    /* moon */
1025
    /* moon */
1026
    -webkit-radial-gradient(41% 50%, circle, black 35%, transparent 40%),
1026
    -webkit-radial-gradient(41% 50%, circle, black 35%, transparent 40%),
1027
   
1027
   
1028
    /* corona */
1028
    /* corona */
1029
    -webkit-radial-gradient(41% 50%, circle, #f5eccd 35%, transparent 50%),
1029
    -webkit-radial-gradient(41% 50%, circle, #f5eccd 35%, transparent 50%),
1030
   
1030
   
1031
    /* flares */
1031
    /* flares */
1032
    -webkit-radial-gradient(44% 44%, circle, #ffffff 35%, transparent 55%);
1032
    -webkit-radial-gradient(44% 44%, circle, #ffffff 35%, transparent 55%);
1033
   
1033
   
1034
  content: "";
1034
  content: "";
1035
}
1035
}
1036
1036
1037
.heroes .s {
1037
.heroes .s {
1038
  letter-spacing: normal;
1038
  letter-spacing: normal;
1039
}
1039
}
1040
1040
1041
@font-face {
1041
@font-face {
1042
  font-family: "House";
1042
  font-family: "House";
1043
  src: local("House"), url(/styles/fonts/House.ttf);
1043
  src: local("House"), url(/styles/fonts/House.ttf);
1044
}
1044
}
1045
1045
1046
.house {
1046
.house {
1047
  /* text-transform: uppercase; */
1047
  /* text-transform: uppercase; */
1048
}
1048
}
1049
1049
1050
.house .h {
1050
.house .h {
1051
  font-family: House, sans-serif;
1051
  font-family: House, sans-serif;
1052
  /*
1052
  /*
1053
  display: inline-block;
1053
  display: inline-block;
1054
  border: 1px solid black;
1054
  border: 1px solid black;
1055
  width: 1em;
1055
  width: 1em;
1056
  height: 1em;
1056
  height: 1em;
1057
  line-height: 1em;
1057
  line-height: 1em;
1058
  text-align: center;
1058
  text-align: center;
1059
  margin-right: 0.125em;
1059
  margin-right: 0.125em;
1060
  */
1060
  */
1061
}
1061
}
1062
1062
1063
.house .ouse {
1063
.house .ouse {
1064
  font-family: House, sans-serif;
1064
  font-family: House, sans-serif;
1065
  /* text-decoration: underline; */
1065
  /* text-decoration: underline; */
1066
}
1066
}
1067
1067
1068
.house .md {
1068
.house .md {
1069
  position: relative;
1069
  position: relative;
1070
  bottom: -0.4em;
1070
  bottom: -0.4em;
1071
  font-size: 0.6em;
1071
  font-size: 0.6em;
1072
}
1072
}
1073
1073
1074
.house .md-de {
1074
.house .md-de {
1075
  position: relative;
1075
  position: relative;
1076
  font-size: 0.6em;
1076
  font-size: 0.6em;
1077
  text-decoration: underline;
1077
  text-decoration: underline;
1078
}
1078
}
1079
1079
1080
@font-face {
1080
@font-face {
1081
  font-family: "MacEnvy DB";
1081
  font-family: "MacEnvy DB";
1082
  src: local("MacEnvy DB"), url(/styles/fonts/MacEnvy_DB-Regular.ttf);
1082
  src: local("MacEnvy DB"), url(/styles/fonts/MacEnvy_DB-Regular.ttf);
1083
}
1083
}
1084
1084
1085
.ijon-tichy {
1085
.ijon-tichy {
1086
  display: inline-block;
1086
  display: inline-block;
1087
  padding: 0.25em 0.5em;
1087
  padding: 0.25em 0.5em;
1088
  background-color: #000;
1088
  background-color: #000;
1089
  color: #B9B7BA;
1089
  color: #B9B7BA;
1090
  line-height: 1em;
1090
  line-height: 1em;
1091
  font-family: "MacEnvy DB", sans-serif;
1091
  font-family: "MacEnvy DB", sans-serif;
1092
  text-align: center;
1092
  text-align: center;
1093
  text-transform: uppercase;
1093
  text-transform: uppercase;
1094
}
1094
}
1095
1095
1096
.ijon-tichy .title {
1096
.ijon-tichy .title {
1097
  display: block;
1097
  display: block;
1098
  letter-spacing: 0.0625em;
1098
  letter-spacing: 0.0625em;
1099
}
1099
}
1100
1100
1101
.ijon-tichy .title .i {
1101
.ijon-tichy .title .i {
1102
  text-shadow: 1.5px 0.5px #59575A, 2px 0.75px #59575A;
1102
  text-shadow: 1.5px 0.5px #59575A, 2px 0.75px #59575A;
1103
}
1103
}
1104
1104
1105
.ijon-tichy .title .j {
1105
.ijon-tichy .title .j {
1106
  text-shadow: 1.5px 0.5px #59575A, 1.5px 0.75px #59575A;
1106
  text-shadow: 1.5px 0.5px #59575A, 1.5px 0.75px #59575A;
1107
}
1107
}
1108
1108
1109
.ijon-tichy .title .o {
1109
.ijon-tichy .title .o {
1110
  text-shadow: 1.5px 0.5px #59575A, 1px 0.75px #59575A;
1110
  text-shadow: 1.5px 0.5px #59575A, 1px 0.75px #59575A;
1111
}
1111
}
1112
1112
1113
.ijon-tichy .title .n {
1113
.ijon-tichy .title .n {
1114
  text-shadow: 1px 0.75px #59575A;
1114
  text-shadow: 1px 0.75px #59575A;
1115
}
1115
}
1116
1116
1117
.ijon-tichy .title .t {
1117
.ijon-tichy .title .t {
1118
  text-shadow: 0 0.75px #59575A;
1118
  text-shadow: 0 0.75px #59575A;
1119
}
1119
}
1120
1120
1121
.ijon-tichy .title .i2 {
1121
.ijon-tichy .title .i2 {
1122
  text-shadow: -0.5px 0.75px #59575A;
1122
  text-shadow: -0.5px 0.75px #59575A;
1123
}
1123
}
1124
1124
1125
.ijon-tichy .title .c {
1125
.ijon-tichy .title .c {
1126
  text-shadow: -1px 0.75px #59575A;
1126
  text-shadow: -1px 0.75px #59575A;
1127
}
1127
}
1128
1128
1129
.ijon-tichy .title .h {
1129
.ijon-tichy .title .h {
1130
  text-shadow: -1.5px 0.75px #59575A, -1px 0.5px #59575A;
1130
  text-shadow: -1.5px 0.75px #59575A, -1px 0.5px #59575A;
1131
}
1131
}
1132
1132
1133
.ijon-tichy .title .y {
1133
.ijon-tichy .title .y {
1134
  text-shadow: -1.5px 0.75px #59575A, -1.5px 0.5px #59575A;
1134
  text-shadow: -1.5px 0.75px #59575A, -1.5px 0.5px #59575A;
1135
}
1135
}
1136
1136
1137
.ijon-tichy .subtitle {
1137
.ijon-tichy .subtitle {
1138
  display: block;
1138
  display: block;
1139
  font-size: 67%;
1139
  font-size: 67%;
1140
  letter-spacing: 0.4em;
1140
  letter-spacing: 0.4em;
1141
}
1141
}
1142
1142
1143
.ijon-tichy .subtitle .r {
1143
.ijon-tichy .subtitle .r {
1144
  text-shadow: 1.5px 0.5px #59575A;
1144
  text-shadow: 1.5px 0.5px #59575A;
1145
}
1145
}
1146
1146
1147
.ijon-tichy .subtitle .a {
1147
.ijon-tichy .subtitle .a {
1148
  text-shadow: 1px 0.5px #59575A;
1148
  text-shadow: 1px 0.5px #59575A;
1149
}
1149
}
1150
1150
1151
.ijon-tichy .subtitle .u {
1151
.ijon-tichy .subtitle .u {
1152
  text-shadow: 0.5px 0.5px #59575A;
1152
  text-shadow: 0.5px 0.5px #59575A;
1153
}
1153
}
1154
1154
1155
.ijon-tichy .subtitle .mpi {
1155
.ijon-tichy .subtitle .mpi {
1156
  text-shadow: 0 0.5px #59575A;
1156
  text-shadow: 0 0.5px #59575A;
1157
}
1157
}
1158
1158
1159
.ijon-tichy .subtitle .l {
1159
.ijon-tichy .subtitle .l {
1160
  text-shadow: -0.5px 0.5px #59575A;
1160
  text-shadow: -0.5px 0.5px #59575A;
1161
}
1161
}
1162
1162
1163
.ijon-tichy .subtitle .o {
1163
.ijon-tichy .subtitle .o {
1164
  text-shadow: -1px 0.5px #59575A;
1164
  text-shadow: -1px 0.5px #59575A;
1165
}
1165
}
1166
1166
1167
.ijon-tichy .subtitle .t {
1167
.ijon-tichy .subtitle .t {
1168
  text-shadow: -1.5px 0.5px #59575A;
1168
  text-shadow: -1.5px 0.5px #59575A;
1169
}
1169
}
1170
1170
1171
.ijon-tichy .subtitle2 {
1171
.ijon-tichy .subtitle2 {
1172
  display: block;
1172
  display: block;
1173
  font-size: 50%;
1173
  font-size: 50%;
1174
  line-height: 1em;
1174
  line-height: 1em;
1175
}
1175
}
1176
1176
1177
.ijon-tichy .subtitle2 .die {
1177
.ijon-tichy .subtitle2 .die {
1178
  text-shadow: 1px 0.5px #59575A;
1178
  text-shadow: 1px 0.5px #59575A;
1179
}
1179
}
1180
1180
1181
.ijon-tichy .subtitle2 .ster {
1181
.ijon-tichy .subtitle2 .ster {
1182
  text-shadow: 0.5px 0.5px #59575A;
1182
  text-shadow: 0.5px 0.5px #59575A;
1183
}
1183
}
1184
1184
1185
.ijon-tichy .subtitle2 .ntag {
1185
.ijon-tichy .subtitle2 .ntag {
1186
  text-shadow: 0 0.5px #59575A;
1186
  text-shadow: 0 0.5px #59575A;
1187
}
1187
}
1188
1188
1189
.ijon-tichy .subtitle2 .ebuec {
1189
.ijon-tichy .subtitle2 .ebuec {
1190
  text-shadow: -0.5px 0.5px #59575A;
1190
  text-shadow: -0.5px 0.5px #59575A;
1191
}
1191
}
1192
1192
1193
.ijon-tichy .subtitle2 .her {
1193
.ijon-tichy .subtitle2 .her {
1194
  text-shadow: -1px 0.5px #59575A;
1194
  text-shadow: -1px 0.5px #59575A;
1195
}
1195
}
1196
1196
1197
@font-face {
1197
@font-face {
1198
  font-family: "Digital1";
1198
  font-family: "Digital1";
1199
  src: local("Transponder AOE"), url(/styles/fonts/digital/TRANA___.TTF);
1199
  src: local("Transponder AOE"), url(/styles/fonts/digital/TRANA___.TTF);
1200
}
1200
}
1201
1201
1202
.it-crowd {
1202
.it-crowd {
1203
  position: relative;
1203
  position: relative;
1204
  padding: 0.125em 0.75em 0.125em 0.5em;
1204
  padding: 0.125em 0.75em 0.125em 0.5em;
1205
  background-color: black;
1205
  background-color: black;
1206
  color: #d4774b;
1206
  color: #d4774b;
1207
  font-family: "Digital1", monospace;
1207
  font-family: "Digital1", monospace;
1208
  font-size: 120%;
1208
  font-size: 120%;
1209
  text-transform: uppercase;
1209
  text-transform: uppercase;
1210
  text-shadow: 0 0 1px #d4774b;
1210
  text-shadow: 0 0 1px #d4774b;
1211
}
1211
}
1212
1212
1213
.it-crowd:after {
1213
.it-crowd:after {
1214
  position: absolute;
1214
  position: absolute;
1215
  top: 0;
1215
  top: 0;
1216
  content: "\258E";
1216
  content: "\258E";
1217
  letter-spacing: 0;
1217
  letter-spacing: 0;
1218
}
1218
}
1219
1219
1220
.superman {
1220
.superman {
1221
  font-weight: bold;
1221
  font-weight: bold;
1222
}
1222
}
1223
1223
1224
.life-on-mars {
1224
.life-on-mars {
1225
  display: inline-block;
1225
  display: inline-block;
1226
  padding: 0.25em 0.5em;
1226
  padding: 0.25em 0.5em;
1227
  background-color: #000;
1227
  background-color: #000;
1228
  background-image:
1228
  background-image:
1229
    -webkit-linear-gradient(left,
1229
    -webkit-linear-gradient(left,
1230
      rgba(255, 255, 255, 0) 35%,
1230
      rgba(255, 255, 255, 0) 35%,
1231
      rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 1) 36%,
1231
      rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 1) 36%,
1232
      rgba(255, 255, 255, 0) 38%),
1232
      rgba(255, 255, 255, 0) 38%),
1233
    -webkit-linear-gradient(top,
1233
    -webkit-linear-gradient(top,
1234
      rgba(255, 255, 255, 0) 81%,
1234
      rgba(255, 255, 255, 0) 81%,
1235
      rgba(255, 255, 255, 1) 81%, rgba(255, 255, 255, 1) 89%,
1235
      rgba(255, 255, 255, 1) 81%, rgba(255, 255, 255, 1) 89%,
1236
      rgba(255, 255, 255, 0) 89%);
1236
      rgba(255, 255, 255, 0) 89%);
1237
  color: #fff;
1237
  color: #fff;
1238
  font-weight: bold;
1238
  font-weight: bold;
1239
  text-shadow: 0 0 0.5px #fff;
1239
  text-shadow: 0 0 0.5px #fff;
1240
  text-transform: uppercase;
1240
  text-transform: uppercase;
1241
  -webkit-text-fill-color: transparent;
1241
  -webkit-text-fill-color: transparent;
1242
}
1242
}
1243
1243
1244
.life-on-mars .e {
1244
.life-on-mars .e {
1245
  letter-spacing: 0.5em;
1245
  letter-spacing: 0.5em;
1246
}
1246
}
1247
 
1247
 
1248
.life-on-mars .on {
1248
.life-on-mars .on {
1249
  text-shadow: 0 0 1px #fff;
1249
  text-shadow: 0 0 1px #fff;
1250
}
1250
}
1251
1251
1252
.life-on-mars .mars {
1252
.life-on-mars .mars {
1253
  text-shadow: 0 0 2px #fff;
1253
  text-shadow: 0 0 2px #fff;
1254
}
1254
}
1255
1255
1256
.macgyver {
1256
.macgyver {
1257
  padding: 0.125em 0.5em;
1257
  padding: 0.125em 0.5em;
1258
  background-color: #080a09;
1258
  background-color: #080a09;
1259
  color: #bb1e15;
1259
  color: #bb1e15;
1260
  font-family: "Copperplate Gothic Bold", serif;
1260
  font-family: "Copperplate Gothic Bold", serif;
1261
  font-size: 150%;
1261
  font-size: 150%;
1262
  font-variant: small-caps;
1262
  font-variant: small-caps;
1263
  font-weight: bold;
1263
  font-weight: bold;
1264
1264
1265
  text-shadow:
1265
  text-shadow:
1266
    -0.5px -0.5px #9f1512,
1266
    -0.5px -0.5px #9f1512,
1267
     0px   -0.5px #9f1512,
1267
     0px   -0.5px #9f1512,
1268
     0.5px -0.5px #9f1512,
1268
     0.5px -0.5px #9f1512,
1269
    -0.5px  0px   #9f1512,
1269
    -0.5px  0px   #9f1512,
1270
     0.5px  0px   #9f1512,
1270
     0.5px  0px   #9f1512,
1271
    -0.5px  0.5px #9f1512,
1271
    -0.5px  0.5px #9f1512,
1272
     0px    0.5px #9f1512,
1272
     0px    0.5px #9f1512,
1273
     0.5px  0.5px #9f1512,
1273
     0.5px  0.5px #9f1512,
1274
    -1px   -1px  1px #d9ad7e,
1274
    -1px   -1px  1px #d9ad7e,
1275
     0px   -1px  1px #d9ad7e,
1275
     0px   -1px  1px #d9ad7e,
1276
     1px   -1px  1px #d9ad7e,
1276
     1px   -1px  1px #d9ad7e,
1277
    -1px    0px  1px #d9ad7e,
1277
    -1px    0px  1px #d9ad7e,
1278
     1px    0px  1px #d9ad7e,
1278
     1px    0px  1px #d9ad7e,
1279
    -1px    1px  1px #d9ad7e,
1279
    -1px    1px  1px #d9ad7e,
1280
     0px    1px  1px #d9ad7e,
1280
     0px    1px  1px #d9ad7e,
1281
     1px    1px  1px #d9ad7e;
1281
     1px    1px  1px #d9ad7e;
1282
}
1282
}
1283
1283
1284
@font-face {
1284
@font-face {
1285
  font-family: "Gill Sans Ultra Bold";
1285
  font-family: "Gill Sans Ultra Bold";
1286
  src: local("Gill Sans Ultra Bold"), url(/styles/fonts/non-free/gilsanu0.TTF);
1286
  src: local("Gill Sans Ultra Bold"), url(/styles/fonts/non-free/gilsanu0.TTF);
1287
}
1287
}
1288
1288
1289
.monk {
1289
.monk {
1290
  color: #d1122a;
1290
  color: #d1122a;
1291
  font-family: "Gill Sans Ultra Bold", sans-serif;
1291
  font-family: "Gill Sans Ultra Bold", sans-serif;
1292
  font-size: 110%;
1292
  font-size: 110%;
1293
  text-transform: uppercase;
1293
  text-transform: uppercase;
1294
  text-shadow: 1px 1px 1px black;
1294
  text-shadow: 1px 1px 1px black;
1295
}
1295
}
1296
1296
1297
@font-face {
1297
@font-face {
1298
  font-family: "Swiss 721 Black Extended BT";
1298
  font-family: "Swiss 721 Black Extended BT";
1299
  src: local("Swiss 721 Black Extended BT"), url(/styles/fonts/non-free/swiss721_bke.TTF);
1299
  src: local("Swiss 721 Black Extended BT"), url(/styles/fonts/non-free/swiss721_bke.TTF);
1300
}
1300
}
1301
1301
1302
.moonlight {
1302
.moonlight {
1303
  padding: 0.125em 0.5em;
1303
  padding: 0.125em 0.5em;
1304
  background-color: black;
1304
  background-color: black;
1305
  color: #020109;
1305
  color: #020109;
1306
  font-family: "Swiss 721 Black Extended BT", sans-serif;
1306
  font-family: "Swiss 721 Black Extended BT", sans-serif;
1307
  text-transform: uppercase;
1307
  text-transform: uppercase;
1308
  <?php
1308
  <?php
1309
        Mixins::radial_gradient('background-image',
1309
        Mixins::radial_gradient('background-image',
1310
                '24% 50%, circle,
1310
                '24% 50%, circle,
1311
                 rgba(224, 211, 106, 1) 33%, rgba(224, 211, 106, 0) 36%, #100d04');
1311
                 rgba(224, 211, 106, 1) 33%, rgba(224, 211, 106, 0) 36%, #100d04');
1312
  ?>
1312
  ?>
1313
}
1313
}
1314
1314
1315
.moonlight .moon {
1315
.moonlight .moon {
1316
  -webkit-mask-image: -webkit-linear-gradient(-80deg, rgba(0,0,0,0.33), rgba(0,0,0,1) 67%);
1316
  -webkit-mask-image: -webkit-linear-gradient(-80deg, rgba(0,0,0,0.33), rgba(0,0,0,1) 67%);
1317
  letter-spacing: -0.0625em;
1317
  letter-spacing: -0.0625em;
1318
}
1318
}
1319
1319
1320
.moonlight .moon .n {
1320
.moonlight .moon .n {
1321
  letter-spacing: 0.125em;
1321
  letter-spacing: 0.125em;
1322
}
1322
}
1323
1323
1324
.moonlight .light {
1324
.moonlight .light {
1325
  color: #ebf062;
1325
  color: #ebf062;
1326
  text-shadow: 1px 1px 2px #070400;
1326
  text-shadow: 1px 1px 2px #070400;
1327
}
1327
}
1328
1328
1329
@font-face {
1329
@font-face {
1330
  font-family: "Terminator";
1330
  font-family: "Terminator";
1331
  src: url(/styles/fonts/TERMINAT.TTF);
1331
  src: url(/styles/fonts/TERMINAT.TTF);
1332
}
1332
}
1333
1333
1334
.mutant-x {
1334
.mutant-x {
1335
  position: relative;
1335
  position: relative;
1336
  padding: 0.25em 0.5em 0.125em 0.5em;
1336
  padding: 0.25em 0.5em 0.125em 0.5em;
1337
  background-color: black;
1337
  background-color: black;
1338
  color: #8f6442;
1338
  color: #8f6442;
1339
  font-family: "Terminator", sans-serif;
1339
  font-family: "Terminator", sans-serif;
1340
  font-size: 105%;
1340
  font-size: 105%;
1341
  text-transform: uppercase;
1341
  text-transform: uppercase;
1342
  white-space: nowrap;
1342
  white-space: nowrap;
1343
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
1343
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
1344
}
1344
}
1345
1345
1346
.mutant-x .gradient {
1346
.mutant-x .gradient {
1347
  position: absolute;
1347
  position: absolute;
1348
  padding: 0.25em 0.5em 0.125em 0.5em;
1348
  padding: 0.25em 0.5em 0.125em 0.5em;
1349
  left: 0;
1349
  left: 0;
1350
  top: 0;
1350
  top: 0;
1351
  -webkit-mask-image: -webkit-linear-gradient(
1351
  -webkit-mask-image: -webkit-linear-gradient(
1352
    rgba(0, 0, 0, 1) 30%, transparent 55%, rgba(0, 0, 0, 1) 80%);
1352
    rgba(0, 0, 0, 1) 30%, transparent 55%, rgba(0, 0, 0, 1) 80%);
1353
  z-index: 2;
1353
  z-index: 2;
1354
}
1354
}
1355
1355
1356
.mutant-x:after {
1356
.mutant-x:after {
1357
  content: "Mutant X";
1357
  content: "Mutant X";
1358
  color: #fcf1eb;
1358
  color: #fcf1eb;
1359
}
1359
}
1360
1360
1361
@font-face {
1361
@font-face {
1362
  font-family: "Walkway SemiBold";
1362
  font-family: "Walkway SemiBold";
1363
  src: local("Walkway SemiBold"), url(/styles/fonts/Walkway_SemiBold.ttf);
1363
  src: local("Walkway SemiBold"), url(/styles/fonts/Walkway_SemiBold.ttf);
1364
}
1364
}
1365
 
1365
 
1366
.numb3rs {
1366
.numb3rs {
1367
  position: relative;
1367
  position: relative;
1368
  padding: 0.25em 0.5em 0.125em 0.5em;
1368
  padding: 0.25em 0.5em 0.125em 0.5em;
1369
  background-color: #000200;
1369
  background-color: #000200;
1370
  /*
1370
  /*
1371
  background-image:
1371
  background-image:
1372
    -webkit-repeating-linear-gradient(left, transparent, transparent 9px,
1372
    -webkit-repeating-linear-gradient(left, transparent, transparent 9px,
1373
      rgba(244, 247, 244, 0.5) 10px, rgba(244, 247, 244, 0.5) 10px),
1373
      rgba(244, 247, 244, 0.5) 10px, rgba(244, 247, 244, 0.5) 10px),
1374
    -webkit-repeating-linear-gradient(top, transparent, transparent 4px,
1374
    -webkit-repeating-linear-gradient(top, transparent, transparent 4px,
1375
      rgba(244, 247, 244, 0.5) 5px, rgba(244, 247, 244, 0.5) 5px);
1375
      rgba(244, 247, 244, 0.5) 5px, rgba(244, 247, 244, 0.5) 5px);
1376
  */
1376
  */
1377
  color: #f4f7f4;
1377
  color: #f4f7f4;
1378
  font-family: "Walkway SemiBold", Helvetica, sans-serif;
1378
  font-family: "Walkway SemiBold", Helvetica, sans-serif;
1379
  font-size: 116%;
1379
  font-size: 116%;
1380
  font-weight: lighter;
1380
  font-weight: lighter;
1381
  letter-spacing: 1px;
1381
  letter-spacing: 1px;
1382
  text-shadow: 0 0 2px #f4f7f4;
1382
  text-shadow: 0 0 2px #f4f7f4;
1383
  text-transform: uppercase;
1383
  text-transform: uppercase;
1384
}
1384
}
1385
1385
1386
.numb3rs .s {
1386
.numb3rs .s {
1387
  letter-spacing: normal;
1387
  letter-spacing: normal;
1388
}
1388
}
1389
1389
1390
/*  
1390
/*  
1391
.numb3rs .gradient {
1391
.numb3rs .gradient {
1392
  position: absolute;
1392
  position: absolute;
1393
  left: 0;
1393
  left: 0;
1394
  top: 0;
1394
  top: 0;
1395
  padding: 0.25em 0.5em 0.125em 0.5em;
1395
  padding: 0.25em 0.5em 0.125em 0.5em;
1396
  color: #f4f7f4;
1396
  color: #f4f7f4;
1397
  -webkit-mask-image: -webkit-linear-gradient(rgba(0, 0, 0, 1), transparent 75%);
1397
  -webkit-mask-image: -webkit-linear-gradient(rgba(0, 0, 0, 1), transparent 75%);
1398
  z-index: 2;
1398
  z-index: 2;
1399
}
1399
}
1400

1400

1401
.numb3rs:after {
1401
.numb3rs:after {
1402
  content: "Numb3rs";
1402
  content: "Numb3rs";
1403
  color: #898b88;
1403
  color: #898b88;
1404
  text-transform: uppercase;
1404
  text-transform: uppercase;
1405
} */
1405
} */
1406
1406
1407
@font-face {
1407
@font-face {
1408
  font-family: "Unconform Round";
1408
  font-family: "Unconform Round";
1409
  src: local("Unconform Round"), url(/styles/fonts/UNCON___.TTF);
1409
  src: local("Unconform Round"), url(/styles/fonts/UNCON___.TTF);
1410
}
1410
}
1411
1411
1412
.odyssey5 {
1412
.odyssey5 {
1413
  padding: 0.5em 0.5em 0.125em 0.5em;
1413
  padding: 0.5em 0.5em 0.125em 0.5em;
1414
  background-color: #000;
1414
  background-color: #000;
1415
  color: #d1550b;
1415
  color: #d1550b;
1416
  font-family: "Unconform Round", sans-serif;
1416
  font-family: "Unconform Round", sans-serif;
1417
  text-transform: uppercase;
1417
  text-transform: uppercase;
1418
  letter-spacing: 0.125em;
1418
  letter-spacing: 0.125em;
1419
}
1419
}
1420
1420
1421
.odyssey5 .s2 {
1421
.odyssey5 .s2 {
1422
  letter-spacing: 0.25em;
1422
  letter-spacing: 0.25em;
1423
}
1423
}
1424
1424
1425
.odyssey5 .e {
1425
.odyssey5 .e {
1426
  letter-spacing: 0.5em;
1426
  letter-spacing: 0.5em;
1427
}
1427
}
1428
1428
1429
.odyssey5 .y2 {
1429
.odyssey5 .y2 {
1430
  letter-spacing: 0.5em;
1430
  letter-spacing: 0.5em;
1431
}
1431
}
1432
1432
1433
.odyssey5 .five {
1433
.odyssey5 .five {
1434
  letter-spacing: normal;
1434
  letter-spacing: normal;
1435
}
1435
}
1436
1436
1437
@font-face {
1437
@font-face {
1438
  font-family: "Dateline Bold";
1438
  font-family: "Dateline Bold";
1439
  src: local("Dateline Bold"), url(/styles/fonts/DatelineBold.ttf);
1439
  src: local("Dateline Bold"), url(/styles/fonts/DatelineBold.ttf);
1440
}
1440
}
1441
 
1441
 
1442
.psych {
1442
.psych {
1443
  font-family: "Dateline Bold", serif;
1443
  font-family: "Dateline Bold", serif;
1444
  font-size: 110%;
1444
  font-size: 110%;
1445
  letter-spacing: -0.125em;
1445
  letter-spacing: -0.125em;
1446
  color: #749f27;
1446
  color: #749f27;
1447
}
1447
}
1448
 
1448
 
1449
@font-face {
1449
@font-face {
1450
  font-family: "Swiss Cheesed";
1450
  font-family: "Swiss Cheesed";
1451
  src: local("SwissCheese"), url(/styles/fonts/SwissCheesed.ttf);
1451
  src: local("SwissCheese"), url(/styles/fonts/SwissCheesed.ttf);
1452
}
1452
}
1453
1453
1454
.quantum-leap {
1454
.quantum-leap {
1455
  position: relative;
1455
  position: relative;
1456
  display: inline-block;
1456
  display: inline-block;
1457
  left: 0;
1457
  left: 0;
1458
  top: 0;
1458
  top: 0;
1459
  padding: 0.5em 0.5em 0.25em 0.5em;
1459
  padding: 0.5em 0.5em 0.25em 0.5em;
1460
  background-color: black;
1460
  background-color: black;
1461
1461
1462
  color: #5598ff;
1462
  color: #5598ff;
1463
  font-family: "Swiss Cheesed", sans-serif;
1463
  font-family: "Swiss Cheesed", sans-serif;
1464
  font-size: 110%;
1464
  font-size: 110%;
1465
  letter-spacing: 0.0625em;
1465
  letter-spacing: 0.0625em;
1466
  text-transform: uppercase;
1466
  text-transform: uppercase;
1467
  text-align: center;
1467
  text-align: center;
1468
  text-shadow:
1468
  text-shadow:
1469
    -1px -1px #6f98e5,
1469
    -1px -1px #6f98e5,
1470
     0   -1px #6f98e5,
1470
     0   -1px #6f98e5,
1471
     1px -1px #6f98e5,
1471
     1px -1px #6f98e5,
1472
    -1px  0px #6f98e5,
1472
    -1px  0px #6f98e5,
1473
     0    0px #6f98e5,
1473
     0    0px #6f98e5,
1474
     1px  0px #6f98e5,
1474
     1px  0px #6f98e5,
1475
    -1px  1px #6f98e5,
1475
    -1px  1px #6f98e5,
1476
     0    1px #6f98e5,
1476
     0    1px #6f98e5,
1477
     1px  1px #6f98e5,
1477
     1px  1px #6f98e5,
1478
    -1px -1px 8px #5598ff,
1478
    -1px -1px 8px #5598ff,
1479
     0   -1px 8px #5598ff,
1479
     0   -1px 8px #5598ff,
1480
     1px -1px 8px #5598ff,
1480
     1px -1px 8px #5598ff,
1481
    -1px  0   8px #5598ff,
1481
    -1px  0   8px #5598ff,
1482
     0    0   8px #5598ff,
1482
     0    0   8px #5598ff,
1483
     1px  0   8px #5598ff,
1483
     1px  0   8px #5598ff,
1484
    -1px  1px 8px #5598ff,
1484
    -1px  1px 8px #5598ff,
1485
     0    1px 8px #5598ff,
1485
     0    1px 8px #5598ff,
1486
     1px  1px 8px #5598ff;
1486
     1px  1px 8px #5598ff;
1487
}
1487
}
1488
1488
1489
.quantum-leap .gradient {
1489
.quantum-leap .gradient {
1490
  position: absolute;
1490
  position: absolute;
1491
  left: 0;
1491
  left: 0;
1492
  top: 0;
1492
  top: 0;
1493
  padding: 0.5em 0.5em 0.25em 0.5em;
1493
  padding: 0.5em 0.5em 0.25em 0.5em;
1494
  color: #000;
1494
  color: #000;
1495
  -webkit-text-fill-color: #5598ff;
1495
  -webkit-text-fill-color: #5598ff;
1496
  -webkit-mask-image: -webkit-linear-gradient(rgba(0, 0, 0, 1), transparent 33%);
1496
  -webkit-mask-image: -webkit-linear-gradient(rgba(0, 0, 0, 1), transparent 33%);
1497
  z-index: 2;
1497
  z-index: 2;
1498
}
1498
}
1499
.quantum-leap:after {
1499
.quantum-leap:after {
1500
  content: "Quantum Leap";
1500
  content: "Quantum Leap";
1501
  color: #000;
1501
  color: #000;
1502
}
1502
}
1503
1503
1504
@font-face {
1504
@font-face {
1505
  font-family: "Spleeny Decaf GD";
1505
  font-family: "Spleeny Decaf GD";
1506
  src: local("Spleeny Decaf GD"), url(/styles/fonts/non-free/Spleeny%20Decaf%20GD.ttf);
1506
  src: local("Spleeny Decaf GD"), url(/styles/fonts/non-free/Spleeny%20Decaf%20GD.ttf);
1507
}
1507
}
1508
1508
1509
.reaper {
1509
.reaper {
1510
  font-family: "Spleeny Decaf GD", fantasy;
1510
  font-family: "Spleeny Decaf GD", fantasy;
1511
  text-transform: uppercase;
1511
  text-transform: uppercase;
1512
}
1512
}
1513
1513
1514
@font-face {
1514
@font-face {
1515
  font-family: "Roswell";
1515
  font-family: "Roswell";
1516
  src: local("Roswell"), url(/styles/fonts/Roswell.TTF);
1516
  src: local("Roswell"), url(/styles/fonts/Roswell.TTF);
1517
}
1517
}
1518
1518
1519
.roswell {
1519
.roswell {
1520
  display: inline-block;
1520
  display: inline-block;
1521
  padding: 0.25em 0.5em 0.125em 0.5em;
1521
  padding: 0.25em 0.5em 0.125em 0.5em;
1522
  background-color: #000;
1522
  background-color: #000;
1523
  <?php
1523
  <?php
1524
    Mixins::linear_gradient('background-image', 'left, #6f3811, #000');
1524
    Mixins::linear_gradient('background-image', 'left, #6f3811, #000');
1525
  ?>
1525
  ?>
1526
  color: #ffffbc;
1526
  color: #ffffbc;
1527
  font-family: "Roswell", sans-serif;
1527
  font-family: "Roswell", sans-serif;
1528
  letter-spacing: 0.25em;
1528
  letter-spacing: 0.25em;
1529
1529
1530
  text-shadow:
1530
  text-shadow:
1531
    -1px -1px 1px rgba(138, 8, 0, 0.5),
1531
    -1px -1px 1px rgba(138, 8, 0, 0.5),
1532
     0px  1px 1px rgba(138, 8, 0, 0.5),
1532
     0px  1px 1px rgba(138, 8, 0, 0.5),
1533
     1px  1px 1px rgba(138, 8, 0, 0.5);
1533
     1px  1px 1px rgba(138, 8, 0, 0.5);
1534
  text-transform: uppercase;
1534
  text-transform: uppercase;
1535
  -webkit-text-stroke: 0.25px rgba(138, 8, 0, 0.75);
1535
  -webkit-text-stroke: 0.25px rgba(138, 8, 0, 0.75);
1536
}
1536
}
1537
1537
1538
.roswell span {
1538
.roswell span {
1539
  letter-spacing: normal;
1539
  letter-spacing: normal;
1540
}
1540
}
1541
1541
1542
.samantha-who {
1542
.samantha-who {
1543
  display: inline-block;
1543
  display: inline-block;
1544
  padding: 0.125em 0.25em 0.125em 0.25em;
1544
  padding: 0.125em 0.25em 0.125em 0.25em;
1545
  background-color: #000;
1545
  background-color: #000;
1546
  color: #e3e5e2;
1546
  color: #e3e5e2;
1547
  line-height: 1em;
1547
  line-height: 1em;
1548
}
1548
}
1549
1549
1550
.samantha-who .text {
1550
.samantha-who .text {
1551
  display: inline-block;
1551
  display: inline-block;
1552
}
1552
}
1553
1553
1554
.samantha-who .samantha {
1554
.samantha-who .samantha {
1555
  display: block;
1555
  display: block;
1556
  position: relative;
1556
  position: relative;
1557
  padding-top: 0.25em;
1557
  padding-top: 0.25em;
1558
  padding-left: 0.25em;
1558
  padding-left: 0.25em;
1559
  font-family: "a_Futura Orto", sans-serif;
1559
  font-family: "a_Futura Orto", sans-serif;
1560
  text-transform: uppercase;
1560
  text-transform: uppercase;
1561
}
1561
}
1562
1562
1563
.samantha-who .samantha::after {
1563
.samantha-who .samantha::after {
1564
  position: absolute;
1564
  position: absolute;
1565
  left: -0.2em;
1565
  left: -0.2em;
1566
  top: -1.05em;
1566
  top: -1.05em;
1567
  right: 0.2em;
1567
  right: 0.2em;
1568
  bottom: 1.05em;
1568
  bottom: 1.05em;
1569
  background-image: -webkit-radial-gradient(10% 15%, 20% 20%, transparent 15%, #d29c13 26%, #d29c13 34%, transparent 45%);
1569
  background-image: -webkit-radial-gradient(10% 15%, 20% 20%, transparent 15%, #d29c13 26%, #d29c13 34%, transparent 45%);
1570
  content: "";
1570
  content: "";
1571
  -webkit-transform: rotate(-27deg);
1571
  -webkit-transform: rotate(-27deg);
1572
  /*border: 1px solid red;*/
1572
  /*border: 1px solid red;*/
1573
}
1573
}
1574
1574
1575
.samantha-who .who,
1575
.samantha-who .who,
1576
.samantha-who .q {
1576
.samantha-who .q {
1577
  color: #e81b04;
1577
  color: #e81b04;
1578
}
1578
}
1579
 
1579
 
1580
.samantha-who .who {
1580
.samantha-who .who {
1581
  display: block;
1581
  display: block;
1582
  font-weight: bold;
1582
  font-weight: bold;
1583
  line-height: 0.75em;
1583
  line-height: 0.75em;
1584
}
1584
}
1585
1585
1586
.samantha-who .q {
1586
.samantha-who .q {
1587
  font-family: cursive;
1587
  font-family: cursive;
1588
  font-size: 200%;
1588
  font-size: 200%;
1589
  font-weight: lighter;
1589
  font-weight: lighter;
1590
}
1590
}
1591
1591
1592
@font-face {
1592
@font-face {
1593
  font-family: "Scrubs";
1593
  font-family: "Scrubs";
1594
  src: local("TSS Scrubs Logo"), url(/styles/fonts/tsslogo.ttf);
1594
  src: local("TSS Scrubs Logo"), url(/styles/fonts/tsslogo.ttf);
1595
}
1595
}
1596
1596
1597
.scrubs:before {
1597
.scrubs:before {
1598
  content: "[";
1598
  content: "[";
1599
}
1599
}
1600
1600
1601
.scrubs {
1601
.scrubs {
1602
  padding: 0.125em 0.25em 0 0.25em;
1602
  padding: 0.125em 0.25em 0 0.25em;
1603
  background-color: #15121a;
1603
  background-color: #15121a;
1604
  color: #d0f9fb;
1604
  color: #d0f9fb;
1605
  font-family: "Scrubs", sans-serif;
1605
  font-family: "Scrubs", sans-serif;
1606
  font-size: 150%;
1606
  font-size: 150%;
1607
  text-shadow: 0 0 10px #d0f9fb;
1607
  text-shadow: 0 0 10px #d0f9fb;
1608
}
1608
}
1609
1609
1610
.scrubs .s {
1610
.scrubs .s {
1611
  text-transform: uppercase;
1611
  text-transform: uppercase;
1612
}
1612
}
1613
1613
1614
.scrubs:after {
1614
.scrubs:after {
1615
  content: "]";
1615
  content: "]";
1616
}
1616
}
1617
1617
1618
@font-face {
1618
@font-face {
1619
  font-family: "seaQuest";
1619
  font-family: "seaQuest";
1620
  src: local("Seaquest"), url(/styles/fonts/SQDSV.TTF);
1620
  src: local("Seaquest"), url(/styles/fonts/SQDSV.TTF);
1621
}
1621
}
1622
1622
1623
.seaQuest {
1623
.seaQuest {
1624
  position: relative;
1624
  position: relative;
1625
  display: inline-block;
1625
  display: inline-block;
1626
  padding-top: 1.5em;
1626
  padding-top: 1.5em;
1627
  background-color: #00001e;
1627
  background-color: #00001e;
1628
<?php
1628
<?php
1629
  // error_reporting(E_ALL | E_STRICT);
1629
  // error_reporting(E_ALL | E_STRICT);
1630
  $lambda = 1;
1630
  $lambda = 1;
1631
  for ($i = 0; $i < 200; ++$i)
1631
  for ($i = 0; $i < 200; ++$i)
1632
  {
1632
  {
1633
    $x = mt_rand(1, 99);
1633
    $x = mt_rand(1, 99);
1634
    /*
1634
    /*
1635
     * Decreasing probability of pixels near bottom through exponential distribution;
1635
     * Decreasing probability of pixels near bottom through exponential distribution;
1636
     * TODO: If coord > 50%, decrease probability of appearance.
1636
     * TODO: If coord > 50%, decrease probability of appearance.
1637
     */
1637
     */
1638
    $max = $lambda * exp(-$lambda * mt_rand(0, 5)) * 99;
1638
    $max = $lambda * exp(-$lambda * mt_rand(0, 5)) * 99;
1639
    if (1 <= $max)
1639
    if (1 <= $max)
1640
    {
1640
    {
1641
            $y = mt_rand(1, $max);
1641
            $y = mt_rand(1, $max);
1642
          $coords[] = array('x' => $x, 'y' => $y);
1642
          $coords[] = array('x' => $x, 'y' => $y);
1643
    }
1643
    }
1644
  }
1644
  }
1645
 
1645
 
1646
  $dots = array_map(function ($coord) {
1646
  $dots = array_map(function ($coord) {
1647
    return "-webkit-radial-gradient({$coord['x']}% {$coord['y']}%, 1px 1px, rgba(255, 255, 255, 0.75), rgba(0, 0, 30, 0))";
1647
    return "-webkit-radial-gradient({$coord['x']}% {$coord['y']}%, 1px 1px, rgba(255, 255, 255, 0.75), rgba(0, 0, 30, 0))";
1648
  }, $coords);
1648
  }, $coords);
1649
?>
1649
?>
1650
  /* water bubbles */
1650
  /* water bubbles */
1651
  background-image: <?php echo implode(",\n    ", $dots); ?>,
1651
  background-image: <?php echo implode(",\n    ", $dots); ?>,
1652
    /* sunlight */
1652
    /* sunlight */
1653
    -webkit-radial-gradient(50% 0%, 50% 200%, #00438c, rgba(0, 0, 31, 0)),
1653
    -webkit-radial-gradient(50% 0%, 50% 200%, #00438c, rgba(0, 0, 31, 0)),
1654
    /* water */
1654
    /* water */
1655
    -webkit-linear-gradient(#030129, #00000c);
1655
    -webkit-linear-gradient(#030129, #00000c);
1656
  color: #ffc50c;
1656
  color: #ffc50c;
1657
  font-family: "seaQuest", sans-serif;
1657
  font-family: "seaQuest", sans-serif;
1658
  font-size: 92%;
1658
  font-size: 92%;
1659
}
1659
}
1660
1660
1661
.seaQuest #seaQuest {
1661
.seaQuest #seaQuest {
1662
  display: block;
1662
  display: block;
1663
  padding: 0 0.25em;
1663
  padding: 0 0.25em;
1664
  text-transform: uppercase;
1664
  text-transform: uppercase;
1665
  line-height: 1;
1665
  line-height: 1;
1666
}
1666
}
1667
1667
1668
.seaQuest #seaQuest .s {
1668
.seaQuest #seaQuest .s {
1669
  text-shadow:
1669
  text-shadow:
1670
    0.5px -0.25px 0.5px #f5bd46,
1670
    0.5px -0.25px 0.5px #f5bd46,
1671
    1px   -0.5px  0.5px #cd8d1f,
1671
    1px   -0.5px  0.5px #cd8d1f,
1672
    1.5px -0.75px 0.5px #b37b1c,
1672
    1.5px -0.75px 0.5px #b37b1c,
1673
    2px   -1px    0.5px #805b17,
1673
    2px   -1px    0.5px #805b17,
1674
    2.5px -1.25px 0.5px #2e2000,
1674
    2.5px -1.25px 0.5px #2e2000,
1675
    3px   -1.5px  0.5px #040400,
1675
    3px   -1.5px  0.5px #040400,
1676
    3.5px -1.75px       #000508;
1676
    3.5px -1.75px       #000508;
1677
}
1677
}
1678
1678
1679
.seaQuest #seaQuest .e {
1679
.seaQuest #seaQuest .e {
1680
  text-shadow:
1680
  text-shadow:
1681
    0.5px -0.25px 0.5px #f5bd46,
1681
    0.5px -0.25px 0.5px #f5bd46,
1682
    1px   -0.5px  0.5px #cd8d1f,
1682
    1px   -0.5px  0.5px #cd8d1f,
1683
    1.5px -0.75px 0.5px #b37b1c,
1683
    1.5px -0.75px 0.5px #b37b1c,
1684
    2px   -1px    0.5px #805b17,
1684
    2px   -1px    0.5px #805b17,
1685
    2.5px -1.25px 0.5px #2e2000,
1685
    2.5px -1.25px 0.5px #2e2000,
1686
    3px   -1.5px        #040400;
1686
    3px   -1.5px        #040400;
1687
}
1687
}
1688
1688
1689
.seaQuest #seaQuest .a {
1689
.seaQuest #seaQuest .a {
1690
  text-shadow:
1690
  text-shadow:
1691
    0.5px -0.25px 0.5px #fdb207,
1691
    0.5px -0.25px 0.5px #fdb207,
1692
    1px   -0.5px  0.5px #eb950e,
1692
    1px   -0.5px  0.5px #eb950e,
1693
    1.5px -0.75px 0.5px #ae5900,
1693
    1.5px -0.75px 0.5px #ae5900,
1694
    2px   -1px    0.5px #642a00,
1694
    2px   -1px    0.5px #642a00,
1695
    2.5px -1.25px       #261704;
1695
    2.5px -1.25px       #261704;
1696
}
1696
}
1697
1697
1698
.seaQuest #seaQuest .q {
1698
.seaQuest #seaQuest .q {
1699
  position: relative;
1699
  position: relative;
1700
  visibility: hidden;
1700
  visibility: hidden;
1701
  display: inline-block;
1701
  display: inline-block;
1702
  margin-right: 0.5em;
1702
  margin-right: 0.5em;
1703
  text-shadow: none;
1703
  text-shadow: none;
1704
}
1704
}
1705
1705
1706
.seaQuest #seaQuest .q:after {
1706
.seaQuest #seaQuest .q:after {
1707
  position: absolute;
1707
  position: absolute;
1708
  visibility: visible;
1708
  visibility: visible;
1709
  margin-right: 0.125em;
1709
  margin-right: 0.125em;
1710
  left: 0;
1710
  left: 0;
1711
  top: -0.5em;
1711
  top: -0.5em;
1712
  right: 0;
1712
  right: 0;
1713
  bottom: 0;
1713
  bottom: 0;
1714
  content: "{";
1714
  content: "{";
1715
  text-align: center;
1715
  text-align: center;
1716
  text-shadow:
1716
  text-shadow:
1717
    0.5px -0.25px 0.5px #ffb43b,
1717
    0.5px -0.25px 0.5px #ffb43b,
1718
    1px   -0.5px  0.5px #e28d23,
1718
    1px   -0.5px  0.5px #e28d23,
1719
    1.5px -0.75px 0.5px #853400,
1719
    1.5px -0.75px 0.5px #853400,
1720
    2px   -1px          #510600;
1720
    2px   -1px          #510600;
1721
}
1721
}
1722
1722
1723
.seaQuest #seaQuest .u {
1723
.seaQuest #seaQuest .u {
1724
  text-shadow:
1724
  text-shadow:
1725
    0.5px -0.25px 0.5px #f7c35d,
1725
    0.5px -0.25px 0.5px #f7c35d,
1726
    1px   -0.5px  0.5px #a36729,
1726
    1px   -0.5px  0.5px #a36729,
1727
    1.5px -0.75px 0.5px #3c0800,
1727
    1.5px -0.75px 0.5px #3c0800,
1728
    2px   -1px          #1b011c;
1728
    2px   -1px          #1b011c;
1729
}
1729
}
1730
1730
1731
.seaQuest #seaQuest .e2 {
1731
.seaQuest #seaQuest .e2 {
1732
  text-shadow:
1732
  text-shadow:
1733
     0.5px -0.25px 0.5px #d8ab56,
1733
     0.5px -0.25px 0.5px #d8ab56,
1734
     1px   -0.5px  0.5px #5c3605;
1734
     1px   -0.5px  0.5px #5c3605;
1735
}
1735
}
1736
1736
1737
.seaQuest #seaQuest .s2 {
1737
.seaQuest #seaQuest .s2 {
1738
  text-shadow:
1738
  text-shadow:
1739
    0px    -0.25px 0.5px #d8ab56,
1739
    0px    -0.25px 0.5px #d8ab56,
1740
    -0.5px -0.5px  0.5px #5c3605,
1740
    -0.5px -0.5px  0.5px #5c3605,
1741
    -1px   -0.75px       #200d00,
1741
    -1px   -0.75px       #200d00,
1742
     0.5px -0.25px       #200d00;
1742
     0.5px -0.25px       #200d00;
1743
}
1743
}
1744
1744
1745
.seaQuest #seaQuest .t {
1745
.seaQuest #seaQuest .t {
1746
  text-shadow:
1746
  text-shadow:
1747
     0.5px -0.25px       #e9bf73,
1747
     0.5px -0.25px       #e9bf73,
1748
    -0.5px -0.25px 0.5px #d8ab56,
1748
    -0.5px -0.25px 0.5px #d8ab56,
1749
    -1px   -0.5px  0.5px #5c3605,
1749
    -1px   -0.5px  0.5px #5c3605,
1750
    -1.5px -0.75px       #200d00,
1750
    -1.5px -0.75px       #200d00,
1751
     0.5px -0.25px       #200d00;
1751
     0.5px -0.25px       #200d00;
1752
}
1752
}
1753
1753
1754
.seaQuest #dsv {
1754
.seaQuest #dsv {
1755
  position: relative;
1755
  position: relative;
1756
  visibility: hidden;
1756
  visibility: hidden;
1757
  display: block;
1757
  display: block;
1758
  margin-top: 0.5em;
1758
  margin-top: 0.5em;
1759
  padding-bottom: 0.25em;
1759
  padding-bottom: 0.25em;
1760
  line-height: 1;
1760
  line-height: 1;
1761
}
1761
}
1762
1762
1763
.seaQuest #dsv:after {
1763
.seaQuest #dsv:after {
1764
  position: absolute;
1764
  position: absolute;
1765
  visibility: visible;
1765
  visibility: visible;
1766
  left: -0.75em;
1766
  left: -0.75em;
1767
  top: 0;
1767
  top: 0;
1768
  right: 0;
1768
  right: 0;
1769
  bottom: 0;
1769
  bottom: 0;
1770
  content: "|";
1770
  content: "|";
1771
  text-align: center;
1771
  text-align: center;
1772
  text-shadow:
1772
  text-shadow:
1773
    0.5px -0.25px 0.5px #ffb43b,
1773
    0.5px -0.25px 0.5px #ffb43b,
1774
    1px   -0.5px  0.5px #e28d23,
1774
    1px   -0.5px  0.5px #e28d23,
1775
    1.5px -0.75px 0.5px #853400,
1775
    1.5px -0.75px 0.5px #853400,
1776
    2px   -1px          #510600;
1776
    2px   -1px          #510600;
1777
}
1777
}
1778
1778
1779
@font-face {
1779
@font-face {
1780
  font-family: "London Tube";
1780
  font-family: "London Tube";
1781
  src: local("P22 Johnston Underground"), url(/styles/fonts/non-free/p22-johnston-underground.ttf);
1781
  src: local("P22 Johnston Underground"), url(/styles/fonts/non-free/p22-johnston-underground.ttf);
1782
}
1782
}
1783
1783
1784
.sherlock {
1784
.sherlock {
1785
  font-family: "London Tube", sans-serif;
1785
  font-family: "London Tube", sans-serif;
1786
  font-size: 120%;
1786
  font-size: 120%;
1787
  text-transform: uppercase;
1787
  text-transform: uppercase;
1788
}
1788
}
1789
1789
1790
@font-face {
1790
@font-face {
1791
  font-family: "Simpsonfont";
1791
  font-family: "Simpsonfont";
1792
  src: local("Simpsonfont"), url(/styles/fonts/Simpsonfont.ttf);
1792
  src: local("Simpsonfont"), url(/styles/fonts/Simpsonfont.ttf);
1793
}
1793
}
1794
1794
1795
@font-face {
1795
@font-face {
1796
  font-family: "Akbar";
1796
  font-family: "Akbar";
1797
  src: local("Akbar"), url(/styles/fonts/akbar.ttf);
1797
  src: local("Akbar"), url(/styles/fonts/akbar.ttf);
1798
}
1798
}
1799
1799
1800
.simpsons {
1800
.simpsons {
1801
  position: relative;
1801
  position: relative;
1802
  display: inline-block;
1802
  display: inline-block;
1803
  min-width: 6em;
1803
  min-width: 6em;
1804
  min-height: 2em;
1804
  min-height: 2em;
1805
  padding: 0.125em 0.25em;
1805
  padding: 0.125em 0.25em;
1806
  background-color: #6598DC;
1806
  background-color: #6598DC;
1807
  color: #FFD166;
1807
  color: #FFD166;
1808
  font-family: "Akbar", sans-serif;
1808
  font-family: "Akbar", sans-serif;
1809
  text-align: center;
1809
  text-align: center;
1810
  text-transform: uppercase;
1810
  text-transform: uppercase;
1811
  overflow: hidden;
1811
  overflow: hidden;
1812
}
1812
}
1813
1813
1814
.simpsons span {
1814
.simpsons span {
1815
  position: relative;
1815
  position: relative;
1816
  display: block;
1816
  display: block;
1817
}
1817
}
1818
1818
1819
<?php
1819
<?php
1820
  Mixins::keyframes('zoom-in',
1820
  Mixins::keyframes('zoom-in',
1821
    '0% {
1821
    '0% {
1822
       opacity: 0;
1822
       opacity: 0;
1823
       -moz-transform: perspective(100px) translateX(0) translateY(0) translateZ(-400px);
1823
       -moz-transform: perspective(100px) translateX(0) translateY(0) translateZ(-400px);
1824
       -webkit-transform: perspective(100px) translateX(0) translateY(0) translateZ(-400px);
1824
       -webkit-transform: perspective(100px) translateX(0) translateY(0) translateZ(-400px);
1825
     }
1825
     }
1826
   
1826
   
1827
     20% {
1827
     20% {
1828
       opacity: 1;
1828
       opacity: 1;
1829
     }
1829
     }
1830
   
1830
   
1831
     100% {
1831
     100% {
1832
       -moz-transform: perspective(100px) translateX(5px) translateY(-4px) translateZ(100px);
1832
       -moz-transform: perspective(100px) translateX(5px) translateY(-4px) translateZ(100px);
1833
       -webkit-transform: perspective(100px) translateX(5px) translateY(-4px) translateZ(100px);
1833
       -webkit-transform: perspective(100px) translateX(5px) translateY(-4px) translateZ(100px);
1834
     }');
1834
     }');
1835
?>
1835
?>
1836
1836
1837
.simpsons:hover span.text {
1837
.simpsons:hover span.text {
1838
  <?php
1838
  <?php
1839
        Mixins::animation('-name', 'zoom-in');
1839
        Mixins::animation('-name', 'zoom-in');
1840
        /* -webkit-animation-iteration-count: infinite; */
1840
        /* -webkit-animation-iteration-count: infinite; */
1841
        Mixins::animation('-duration', '3s');
1841
        Mixins::animation('-duration', '3s');
1842
  ?>  
1842
  ?>  
1843
}
1843
}
1844
1844
1845
@font-face {
1845
@font-face {
1846
  font-family: "Smallville";
1846
  font-family: "Smallville";
1847
  src: local("Smallville"), url(/styles/fonts/Smallville1.ttf);
1847
  src: local("Smallville"), url(/styles/fonts/Smallville1.ttf);
1848
}
1848
}
1849
1849
1850
.smallville {
1850
.smallville {
1851
  font-family: "Smallville", sans-serif;
1851
  font-family: "Smallville", sans-serif;
1852
  font-size: 160%;
1852
  font-size: 160%;
1853
  text-transform: uppercase;
1853
  text-transform: uppercase;
1854
  color: #FE1318;
1854
  color: #FE1318;
1855
}
1855
}
1856
1856
1857
/* Symmetric "Superman" effect */
1857
/* Symmetric "Superman" effect */
1858
.smallville span {
1858
.smallville span {
1859
  position: relative;
1859
  position: relative;
1860
  top: -0.1em;
1860
  top: -0.1em;
1861
  font-size: 90%;
1861
  font-size: 90%;
1862
}
1862
}
1863
1863
1864
.space-above-beyond {
1864
.space-above-beyond {
1865
  display: inline-block;
1865
  display: inline-block;
1866
  background-color: black;
1866
  background-color: #222723;
1867
  color: white;
1867
  color: #A7B2C4;
1868
  padding: 0.25em 0.5em;
1868
  padding: 0.25em 0.5em;
1869
  text-transform: uppercase;
1869
  text-transform: uppercase;
1870
}
1870
}
1871
1871
-
 
1872
@font-face {
-
 
1873
  font-family: "Freedom Fighter";
-
 
1874
  src: local("Freedom Fighter"), url(/styles/fonts/freedomfighter.ttf);
-
 
1875
}
-
 
1876
1872
.space-above-beyond .space {
1877
.space-above-beyond .space {
1873
  display: block;
1878
  display: block;
1874
  letter-spacing: 0.5em;
1879
  color: #5E5C5D;
-
 
1880
  font: 150% "Freedom Fighter", sans-serif;
1875
  text-align: justify;
1881
  text-align: justify;
-
 
1882
  text-shadow: 1px 1px 1px #0A0300, -1px -1px 1px #F5FBFF;
1876
}
1883
}
1877
1884
1878
.space-above-beyond .space span {
1885
.space-above-beyond .space span {
1879
  letter-spacing: normal;
1886
  letter-spacing: normal;
1880
}
1887
}
1881
1888
1882
.space-above-beyond .above-beyond {
1889
.space-above-beyond .above-beyond {
1883
  display: block;
1890
  display: block;
1884
  font-size: 50%;
1891
  font-size: 50%;
1885
  word-spacing: 0.5em;
-
 
1886
  text-align: justify;
1892
  text-align: justify;
-
 
1893
  word-spacing: 0.125em;
-
 
1894
  -webkit-text-stroke: #A7B2C4 1px;
1887
}
1895
}
1888
1896
1889
.space-above-beyond .above-beyond span {
1897
.space-above-beyond .above-beyond span {
1890
  word-spacing: normal;
1898
  word-spacing: normal;
1891
}
1899
}
1892
1900
1893
@font-face {
1901
@font-face {
1894
  font-family: "Stargate";
1902
  font-family: "Stargate";
1895
  src: local("Stargate"), url(/styles/fonts/STARGATE.TTF);
1903
  src: local("Stargate"), url(/styles/fonts/STARGATE.TTF);
1896
}
1904
}
1897
1905
1898
.stargate {
1906
.stargate {
1899
  display: inline-block;
1907
  display: inline-block;
1900
  font-family: "Stargate", serif;
1908
  font-family: "Stargate", serif;
1901
  font-size: 122%;
1909
  font-size: 122%;
1902
  text-align: center;
1910
  text-align: center;
1903
  text-transform: uppercase;
1911
  text-transform: uppercase;
1904
}
1912
}
1905
1913
1906
.stargate > span {
1914
.stargate > span {
1907
  display: block;
1915
  display: block;
1908
}
1916
}
1909
1917
1910
.stargate.en {
1918
.stargate.en {
1911
  letter-spacing: 0.125em;
1919
  letter-spacing: 0.125em;
1912
}
1920
}
1913
1921
1914
.stargate.en span span:last-child {
1922
.stargate.en span span:last-child {
1915
  letter-spacing: normal;
1923
  letter-spacing: normal;
1916
}
1924
}
1917
1925
1918
.stargate.en > span:first-child {
1926
.stargate.en > span:first-child {
1919
  padding-bottom: 0;
1927
  padding-bottom: 0;
1920
  border-bottom: 1px solid black;
1928
  border-bottom: 1px solid black;
1921
}
1929
}
1922
1930
1923
.stargate.en > span:last-child {
1931
.stargate.en > span:last-child {
1924
  padding-top: 0.125em;
1932
  padding-top: 0.125em;
1925
}
1933
}
1926
1934
1927
.stargate.de > span:last-child {
1935
.stargate.de > span:last-child {
1928
  font-size: 64%;
1936
  font-size: 64%;
1929
}
1937
}
1930
1938
1931
.stargate .a {
1939
.stargate .a {
1932
  text-transform: lowercase;
1940
  text-transform: lowercase;
1933
}
1941
}
1934
1942
1935
.atlantis .stargate {
1943
.atlantis .stargate {
1936
  display: inline-block;
1944
  display: inline-block;
1937
  padding: 0 0.25em;
1945
  padding: 0 0.25em;
1938
  border-bottom: 1px solid black;
1946
  border-bottom: 1px solid black;
1939
  font-size: 81%;
1947
  font-size: 81%;
1940
  letter-spacing: 0.125em;
1948
  letter-spacing: 0.125em;
1941
}
1949
}
1942
1950
1943
.atlantis .atlantis {
1951
.atlantis .atlantis {
1944
  margin-top: 0.125em;
1952
  margin-top: 0.125em;
1945
  position: relative;
1953
  position: relative;
1946
  top: -0.15em;
1954
  top: -0.15em;
1947
  padding-top: 0.15em;
1955
  padding-top: 0.15em;
1948
  letter-spacing: 0.125em;
1956
  letter-spacing: 0.125em;
1949
}
1957
}
1950
1958
1951
.atlantis span span:last-child
1959
.atlantis span span:last-child
1952
{
1960
{
1953
  letter-spacing: normal;
1961
  letter-spacing: normal;
1954
}
1962
}
1955
1963
1956
.sg-u {
1964
.sg-u {
1957
  padding: 0.25em 0.25em 0 0.25em;
1965
  padding: 0.25em 0.25em 0 0.25em;
1958
  background-color: #000;
1966
  background-color: #000;
1959
  color: #eee;
1967
  color: #eee;
1960
  font-family: "Eurostile Extended", sans-serif;
1968
  font-family: "Eurostile Extended", sans-serif;
1961
  font-size: 122%;
1969
  font-size: 122%;
1962
  font-weight: bold;
1970
  font-weight: bold;
1963
  letter-spacing: -0.125em;
1971
  letter-spacing: -0.125em;
1964
}
1972
}
1965
1973
1966
.sg-u .ring {
1974
.sg-u .ring {
1967
  letter-spacing: -0.2em;
1975
  letter-spacing: -0.2em;
1968
}
1976
}
1969
1977
1970
@font-face {
1978
@font-face {
1971
  font-family: "Torchwood";
1979
  font-family: "Torchwood";
1972
  src: local("Torchwood"), url(/styles/fonts/Torchwood.ttf);
1980
  src: local("Torchwood"), url(/styles/fonts/Torchwood.ttf);
1973
}
1981
}
1974
1982
1975
@font-face {
1983
@font-face {
1976
  font-family: "Federation Classic";
1984
  font-family: "Federation Classic";
1977
  src: local("Federation Classic"), url(/styles/fonts/FEC_____.TTF);
1985
  src: local("Federation Classic"), url(/styles/fonts/FEC_____.TTF);
1978
}
1986
}
1979
1987
1980
.star-trek-tos {
1988
.star-trek-tos {
1981
  padding: 0.125em 0.25em 0 0.25em;
1989
  padding: 0.125em 0.25em 0 0.25em;
1982
  background-color: #000;
1990
  background-color: #000;
1983
  color: #FBB72C;
1991
  color: #FBB72C;
1984
  font-family: "Federation Classic", sans-serif;
1992
  font-family: "Federation Classic", sans-serif;
1985
  font-size: 150%;
1993
  font-size: 150%;
1986
  text-transform: lowercase;
1994
  text-transform: lowercase;
1987
}
1995
}
1988
1996
1989
@font-face {
1997
@font-face {
1990
  font-family: "Starnext";
1998
  font-family: "Starnext";
1991
        src: local("Starnext"), url(/styles/fonts/StarNext.ttf);
1999
        src: local("Starnext"), url(/styles/fonts/StarNext.ttf);
1992
}
2000
}
1993
2001
1994
.star-trek-tng {
2002
.star-trek-tng {
1995
  display: inline-block;
2003
  display: inline-block;
1996
  padding: 0.25em 0.5em 0.25em 0.5em;
2004
  padding: 0.25em 0.5em 0.25em 0.5em;
1997
  background-color: #000;
2005
  background-color: #000;
1998
  color: #2D7BCD;
2006
  color: #2D7BCD;
1999
  font-family: "Starnext", sans-serif;
2007
  font-family: "Starnext", sans-serif;
2000
  font-size: 120%;
2008
  font-size: 120%;
2001
  line-height: 1;
2009
  line-height: 1;
2002
        text-transform: uppercase;
2010
        text-transform: uppercase;
2003
  text-align: center;
2011
  text-align: center;
2004
}
2012
}
2005
2013
2006
.star-trek-tng span {
2014
.star-trek-tng span {
2007
  display: block;
2015
  display: block;
2008
}
2016
}
2009
2017
2010
.star-trek-tng .star {
2018
.star-trek-tng .star {
2011
  text-align: left;
2019
  text-align: left;
2012
}
2020
}
2013
2021
2014
.star-trek-tng .trek {
2022
.star-trek-tng .trek {
2015
  position: relative;
2023
  position: relative;
2016
  top: -0.2em;
2024
  top: -0.2em;
2017
  text-align: right;
2025
  text-align: right;
2018
}
2026
}
2019
2027
2020
.star-trek-tng .tng {
2028
.star-trek-tng .tng {
2021
  font-size: 44%;
2029
  font-size: 44%;
2022
}
2030
}
2023
2031
2024
.time-trax {
2032
.time-trax {
2025
  background-color: #fff;
2033
  background-color: #fff;
2026
  color: #003ee5;
2034
  color: #003ee5;
2027
  font-size: 120%;
2035
  font-size: 120%;
2028
  font-weight: bold;
2036
  font-weight: bold;
2029
  text-shadow: 2px 1px #00021c;
2037
  text-shadow: 2px 1px #00021c;
2030
}
2038
}
2031
2039
2032
.torchwood {
2040
.torchwood {
2033
  padding: 0.125em 0.25em;
2041
  padding: 0.125em 0.25em;
2034
  background-color: black;
2042
  background-color: black;
2035
  color: #E72524;
2043
  color: #E72524;
2036
  font-family: "Torchwood", serif;
2044
  font-family: "Torchwood", serif;
2037
  font-size: 106%;
2045
  font-size: 106%;
2038
  text-transform: uppercase;
2046
  text-transform: uppercase;
2039
}
2047
}
2040
2048
2041
@font-face {
2049
@font-face {
2042
  font-family: "True Blood";
2050
  font-family: "True Blood";
2043
  src: local("True Blood"), url(/styles/fonts/non-free/TRUEBLOOD.ttf);
2051
  src: local("True Blood"), url(/styles/fonts/non-free/TRUEBLOOD.ttf);
2044
}
2052
}
2045
2053
2046
.true-blood {
2054
.true-blood {
2047
  font-family: "True Blood", sans-serif;
2055
  font-family: "True Blood", sans-serif;
2048
}
2056
}
2049
2057
2050
.true-blood .upper {
2058
.true-blood .upper {
2051
  text-transform: uppercase;
2059
  text-transform: uppercase;
2052
}
2060
}
2053
2061
2054
.true-blood .blood {
2062
.true-blood .blood {
2055
  color: #991b30;
2063
  color: #991b30;
2056
}
2064
}
2057
2065
2058
.true-blood .lower {
2066
.true-blood .lower {
2059
  text-transform: lowercase;
2067
  text-transform: lowercase;
2060
}
2068
}
2061
2069
2062
.tara {
2070
.tara {
2063
  font-family: sans-serif;
2071
  font-family: sans-serif;
2064
  font-weight: bold;
2072
  font-weight: bold;
2065
  text-transform: uppercase;
2073
  text-transform: uppercase;
2066
}
2074
}
2067
2075
2068
.visitors {
2076
.visitors {
2069
  display: inline-block;
2077
  display: inline-block;
2070
  position: relative;
2078
  position: relative;
2071
  padding: 0.5em 0.5em 0.25em 0.5em;
2079
  padding: 0.5em 0.5em 0.25em 0.5em;
2072
  background-color: #000;
2080
  background-color: #000;
2073
  color: #ff1700;
2081
  color: #ff1700;
2074
  font-family: fantasy;
2082
  font-family: fantasy;
2075
  font-size: 80%;
2083
  font-size: 80%;
2076
  line-height: 2em;
2084
  line-height: 2em;
2077
}
2085
}
2078
2086
2079
.visitors span {
2087
.visitors span {
2080
  vertical-align: middle;
2088
  vertical-align: middle;
2081
}
2089
}
2082
2090
2083
.visitors .v {
2091
.visitors .v {
2084
  position: absolute;
2092
  position: absolute;
2085
  left: 0;
2093
  left: 0;
2086
  width: 100%;
2094
  width: 100%;
2087
  font-size: 300%;
2095
  font-size: 300%;
2088
  color: rgba(210, 0, 1, 0.8);
2096
  color: rgba(210, 0, 1, 0.8);
2089
  text-align: center;
2097
  text-align: center;
2090
}
2098
}
2091
2099
2092
.visitors .subtitle {
2100
.visitors .subtitle {
2093
  text-transform: uppercase;
2101
  text-transform: uppercase;
2094
}
2102
}
2095
2103
2096
@font-face {
2104
@font-face {
2097
  font-family: "Gunplay";
2105
  font-family: "Gunplay";
2098
  src: local("Gunplay"), url(/styles/fonts/gunplay.ttf);
2106
  src: local("Gunplay"), url(/styles/fonts/gunplay.ttf);
2099
}
2107
}
2100
2108
2101
.warehouse-13 {
2109
.warehouse-13 {
2102
  padding: 0 0.25em 0.125em 0.25em;
2110
  padding: 0 0.25em 0.125em 0.25em;
2103
  background-color: #000;
2111
  background-color: #000;
2104
  color: #BF311A;
2112
  color: #BF311A;
2105
  font-family: "Gunplay", sans-serif;
2113
  font-family: "Gunplay", sans-serif;
2106
  text-transform: uppercase;
2114
  text-transform: uppercase;
2107
}
2115
}
2108
2116
2109
.warehouse-13 .numbers {
2117
.warehouse-13 .numbers {
2110
  color: #B4B4B4;
2118
  color: #B4B4B4;
2111
}
2119
}
2112
2120
2113
div.box {
2121
div.box {
2114
  border: 1px solid black;
2122
  border: 1px solid black;
2115
  position: relative;
2123
  position: relative;
2116
  text-align: center;
2124
  text-align: center;
2117
}
2125
}
2118
2126
2119
div.meter, div.coverage {
2127
div.meter, div.coverage {
2120
  position: absolute;
2128
  position: absolute;
2121
  height: 100%;
2129
  height: 100%;
2122
}
2130
}
2123
2131
2124
div.meter {
2132
div.meter {
2125
  background-color: rgba(0, 0, 128, 0.5);
2133
  background-color: rgba(0, 0, 128, 0.5);
2126
}
2134
}
2127
2135
2128
div.season {
2136
div.season {
2129
  position: absolute;
2137
  position: absolute;
2130
  border-left: 1px solid #333;
2138
  border-left: 1px solid #333;
2131
  background-color: transparent;
2139
  background-color: transparent;
2132
  color: #999;
2140
  color: #999;
2133
  overflow: hidden;
2141
  overflow: hidden;
2134
  white-space: nowrap;
2142
  white-space: nowrap;
2135
}
2143
}
2136
2144
2137
div.coverage {
2145
div.coverage {
2138
  background-color: rgba(0, 218, 0, 0.5);
2146
  background-color: rgba(0, 218, 0, 0.5);
2139
}
2147
}
2140
2148
2141
.percentage {
2149
.percentage {
2142
  position: relative;
2150
  position: relative;
2143
  background-color: rgba(255, 255, 255, 0.5);
2151
  background-color: rgba(255, 255, 255, 0.5);
2144
}
2152
}
2145
 
2153