~james-page/ubuntu/precise/nodejs/0.6.x-merge

« back to all changes in this revision

Viewing changes to doc/pipe.css

  • Committer: James Page
  • Date: 2012-03-30 12:09:16 UTC
  • mfrom: (7.1.23 sid)
  • Revision ID: james.page@canonical.com-20120330120916-40hfu9o00qr5t87b
* Merge from Debian unstable:
  - New upstream release (LP: #892034).
  - This package is x86/arm only. Update control to match
  - d/patches/2009_increase_test_timeout.patch: Increased default test
    timeout from 60 to 120 seconds to support reliable execution of all
    tests on armhf/armel architectures.
  - d/patches/2005_expected_failing_tests.patch: 
    - Allow racey tests to fail: test-cluster-kill-workers,
      test-child-process-fork2 
    - Allow test-fs-watch to fail as LP buildd's don't support
      inotify.
    - Revert all other Ubuntu changes as no longer required.
* Update Standards-Version to 3.9.3.
* Patch wscript to enable build on mipsel arch, libv8 being available.
  Upstream does not support that arch, failure expected.
* test-cluster-kill-workers is expected to fail on armhf,
  Bug#660802 will be closed when test pass.
* test-buffer is expected to fail on armel,
  Bug#660800 will be closed when test pass.
* Add epoch to dependency on libev >= 1:4.11. Closes: bug#658441.
* Remove tools/doc because node-doc-generator has no license for now.
* Add copyright for doc/sh* files (shjs).
* source.lintian-overrides : source-contains-waf-binary tools/node-waf
  it is simply not the case here.
* test-stream-pipe-multi expected to timeout sometimes on busy builds. 
* New upstream release.
* Remove upstream patches.
* test-dgram-pingpong expected to timeout, the test itself is buggy.
* test-buffer expected to fail on armel, allow building package to make
  it easier to find the cause of the failure.
  Closes: bug#639636.
* Expect tests dgram-multicast and broadcast to fail.
  debian/patches/2005_expected_failing_tests.patch
* Drop dpkg-source local-options: Defaults since dpkg-source 1.16.1.
* New upstream release.
* Depend on libev-dev 4.11, see bug#657080.
* Bump dependency on openssl to 1.0.0g.
* Remove useless uv_loop_refcount from libuv,
  refreshed 2009_fix_shared_ev.patch.
* Apply to upstream patches landed after 0.6.10 release,
  to fix debugger repl and http client.
* New upstream release. Closes:bug#650661
* Repackage to remove non-dfsg font files ./deps/npm/html/*/*.ttf
* Remove unneeded bundled dependencies: lighter tarball,
  debian/copyright is easier to maintain.
* Drop unneeded build-dependency on scons.
* Depend on zlib1g, libc-ares, libev.
  Patches done to support building with those shared libs.
* Fix DEB_UPSTREAM_URL in debian/rules, and debian/watch.
* nodejs.pc file for pkgconfig is no more available.
* Build-depend on procps package, a test is using /bin/ps.
* Refreshed debian/patches/2005_expected_failing_tests.patch,
  only for tests that need networking.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
}
4
4
 
5
5
body {
6
 
        background: #353129;
 
6
        background: #46483e;
7
7
        color: #eee;
8
 
        font-size: 14pt;
9
 
        line-height: 150%;
10
 
        font-family: Georgia, "Times New Roman", Times, serif;
11
 
        max-width: 30em;
12
 
        margin: 0 0 5em 9em;
13
 
}
 
8
        font-size: 12px;
 
9
        line-height: 180%;
 
10
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, Tahoma, sans-serif;
 
11
        margin: 0;
 
12
    padding-top: 40px;
 
13
    border-top: 6px #8cc84b solid;
 
14
}
 
15
 
 
16
body.alt {
 
17
    background: white;
 
18
    color: #46483e;
 
19
}
 
20
 
 
21
body.int {
 
22
  padding-top:49px;
 
23
}
 
24
 
14
25
img {
15
26
        border: 0;
16
27
}
17
 
#toc {
18
 
  position: absolute;
19
 
  top: 2em;
20
 
  left: 0;
21
 
  width: 10em;
22
 
  font-family: Helvetica, Arial, sans-serif;
23
 
  font-size: 12pt;
24
 
  line-height: 150%;
25
 
}
26
28
@media all and (min-height: 650px) { #toc { position: fixed; }}
27
29
#toctitle {
28
30
  display: none;
29
31
}
30
 
#toc ol {
31
 
  list-style: none;
32
 
}
33
 
#toc ol, .toclevel2 {
34
 
  margin: 0;
35
 
  padding: 0;
36
 
  padding-left: 1em;
37
 
}
38
 
#toc ol li {
39
 
  margin: 0;
40
 
  padding: 0;
41
 
}
42
 
#toc a {
43
 
        color: #8BC84B;
44
 
}
45
 
 
46
32
h1, h2, h3, h4 {
47
 
        color: #CCD2BC;
 
33
        color: #d2d8ba;
48
34
        font-family: Helvetica, Arial, sans-serif;
49
35
        margin-top: 2em;
50
36
        margin-right: 0;
51
37
        margin-bottom: 10px;
52
38
        margin-left: 0;
53
 
}
54
 
 
55
 
#toc ol ol {
56
 
  font-size: 8pt;
57
 
  line-height: 110%;
58
 
  list-style: circle;
59
 
}
60
 
 
61
 
h1 code, h2 code, h3 code, h4 code, 
62
 
h1 a, h2 a, h3 a, h4 a 
63
 
64
 
  color: inherit; 
65
 
  font-size: inherit; 
66
 
}
67
 
 
68
 
pre, code {
69
 
        font-family: Monaco, 'Andale Mono', 'Lucida Console', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif;
70
 
        ;
71
 
        font-size: 11pt;
72
 
        color: #C3CC88;
73
 
}
 
39
    text-transform: uppercase;
 
40
}
 
41
h1 {
 
42
    font-family: Georgia, FreeSerif, Times, serif;
 
43
    font-size: 30px;
 
44
    line-height: 36px;
 
45
    text-transform: none;
 
46
    color: #669900;
 
47
    font-weight: normal;
 
48
    margin: 15px 0 11px;
 
49
}
 
50
 
 
51
h2 {
 
52
    font-size: 12px;
 
53
    font-weight: normal;
 
54
}
 
55
 
 
56
h1 code, h2 code, h3 code, h4 code,
 
57
h1 a, h2 a, h3 a, h4 a
 
58
{
 
59
  color: inherit;
 
60
  font-size: inherit;
 
61
}
 
62
 
 
63
#intro {
 
64
    width: 775px;
 
65
    margin: 0 auto;
 
66
    text-align: center;
 
67
        color: #d2d8ba;
 
68
 
 
69
  /* preload platform-icons.png */
 
70
  background-image: url(http://nodejs.org/images/platform-icons.png);
 
71
  background-repeat: no-repeat;
 
72
  background-position: -999em -999em;
 
73
}
 
74
 
 
75
#intro p {
 
76
    width: 680px;
 
77
    line-height: 180%;
 
78
    padding-top: 30px;
 
79
    margin: 0 auto 30px auto;
 
80
    font-size: 14px;
 
81
}
 
82
 
 
83
#intro.interior #logo {
 
84
    margin-left: -298px;
 
85
}
 
86
 
 
87
#intro p.version {
 
88
    padding-top: 10px;
 
89
    font-size: 12px;
 
90
}
 
91
 
 
92
#intro .button {
 
93
  font-weight: bold;
 
94
  font-size: 14px;
 
95
  text-transform: uppercase;
 
96
  padding: 6px 12px;
 
97
  -webkit-border-radius: 4px;
 
98
  -moz-border-radius: 4px;
 
99
  border-radius: 4px;
 
100
  margin: 0 1px;
 
101
  color: #46483e;
 
102
}
 
103
 
 
104
#intro .button:hover {
 
105
  text-decoration: none;
 
106
}
 
107
 
 
108
#intro #downloadbutton {
 
109
  background-color: #8BC84B;
 
110
}
 
111
 
 
112
#intro #downloadbutton:hover {
 
113
  background-color: #73a53e;
 
114
}
 
115
 
 
116
#intro #docsbutton {
 
117
  background-color: #9a9f8b;
 
118
}
 
119
 
 
120
#intro #docsbutton:hover {
 
121
  background-color: #aab293;
 
122
}
 
123
 
 
124
#quotes {
 
125
    text-align: center;
 
126
    width: 100%;
 
127
    background-color: #33342d;
 
128
    margin-top: 40px;
 
129
    padding-top: 20px;
 
130
    padding-bottom: 20px;
 
131
}
 
132
 
 
133
#quotes h2 {
 
134
    margin-top: 0;
 
135
}
 
136
 
 
137
#quotes ul {
 
138
    display: block;
 
139
    width: 775px;
 
140
    margin: 0 auto;
 
141
    padding-top: 20px;
 
142
}
 
143
 
 
144
#quotes ul li {
 
145
    display: block;
 
146
    text-align: left;
 
147
    width: 180px;
 
148
    float: left;
 
149
    padding-right: 15px;
 
150
    font-size: 11px;
 
151
}
 
152
 
 
153
#quotes ul li.ebay {
 
154
    margin-top: -10px;
 
155
}
 
156
 
 
157
#quotes ul li.linkedin {
 
158
    margin-top: -4px;
 
159
}
 
160
 
 
161
#quotes ul li.yahoo {
 
162
    margin-top: -4px;
 
163
    padding-right: 0;
 
164
}
 
165
 
 
166
#quotes ul li p span {
 
167
    font-size: 10px;
 
168
}
 
169
 
 
170
#quotes ul li p {
 
171
  color: #D2D8BA
 
172
}
 
173
 
 
174
#content {
 
175
    width: 775px;
 
176
    margin: 0 auto;
 
177
    overflow: visible;
 
178
    clear: both;
 
179
    display: block;
 
180
}
 
181
.int #content {
 
182
  width: 953px;
 
183
}
 
184
 
 
185
#column1 {
 
186
    width: 460px;
 
187
    float: left;
 
188
}
 
189
 
 
190
#content p {
 
191
    font-size: 14px;
 
192
    line-height:24px;
 
193
}
 
194
#front #content p {
 
195
  font-size:12px;
 
196
}
 
197
 
 
198
#content h1 + p {
 
199
    font-size: 18px;
 
200
    line-height: 30px;
 
201
    color: #46483e;
 
202
    font-family: Georgia, FreeSerif, Times, serif;
 
203
}
 
204
 
 
205
#column2 {
 
206
    width: 260px;
 
207
    float: right;
 
208
}
 
209
 
 
210
#column1.interior {
 
211
    width: 600px;
 
212
    float: right;
 
213
    padding-top: 11px;
 
214
    font-size:18px;
 
215
    padding-right:150px;
 
216
}
 
217
 
 
218
#column2.interior {
 
219
    width: 140px;
 
220
    float: left;
 
221
    margin-top: -54px;
 
222
    overflow: visible;
 
223
}
 
224
 
 
225
#column2.interior ul {
 
226
    margin-left: 0;
 
227
}
 
228
 
 
229
#column2.interior li {
 
230
    list-style-type: none;
 
231
}
 
232
 
 
233
#column2.interior li a {
 
234
    display: block;
 
235
    padding: 0 0 0 35px;
 
236
    color: #878b78;
 
237
    text-transform: uppercase;
 
238
    text-decoration: none;
 
239
    font-size: 11px;
 
240
    line-height: 23px;
 
241
}
 
242
 
 
243
#column2.interior li a.home { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px 3px; }
 
244
#column2.interior li a.download { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px -21px; }
 
245
#column2.interior li a.about { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px -44px; }
 
246
#column2.interior li a.npm { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px -69px; }
 
247
#column2.interior li a.docs { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px -93px; }
 
248
#column2.interior li a.blog { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px -117px; }
 
249
#column2.interior li a.community { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px -141px; }
 
250
#column2.interior li a.logos { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px -165px; }
 
251
#column2.interior li a.jobs { background: url(http://nodejs.org/images/icons-interior.png) no-repeat -156px -189px; } 
 
252
 
 
253
#column2.interior li a.home.current { background-position: 2px 3px; }
 
254
#column2.interior li a.download.current { background-position: 2px -21px; }
 
255
#column2.interior li a.about.current { background-position: 2px -45px; }
 
256
#column2.interior li a.npm.current { background-position: 2px -69px; }
 
257
#column2.interior li a.docs.current { background-position: 2px -93px; }
 
258
#column2.interior li a.blog.current { background-position: 2px -117px; }
 
259
#column2.interior li a.community.current { background-position: 2px -141px; }
 
260
#column2.interior li a.logos.current { background-position: 2px -165px; }
 
261
#column2.interior li a.jobs.current { background-position: 2px -189px; }
 
262
#column2.interior li a.current { color: #8cc84b; font-weight: bold; }
 
263
 
 
264
#column2.interior li a.home:hover { background-position: -331px 3px; }
 
265
#column2.interior li a.download:hover { background-position: -331px -21px; }
 
266
#column2.interior li a.about:hover { background-position: -331px -45px; }
 
267
#column2.interior li a.npm:hover { background-position: -331px -69px; }
 
268
#column2.interior li a.docs:hover { background-position: -331px -93px; }
 
269
#column2.interior li a.blog:hover { background-position: -331px -117px; }
 
270
#column2.interior li a.community:hover { background-position: -331px -141px; }
 
271
#column2.interior li a.logos:hover { background-position: -331px -165px; }
 
272
#column2.interior li a.jobs:hover { background-position: -331px -189px; }
 
273
#column2.interior li a:hover { color: #000000; text-decoration: none; }
 
274
 
 
275
#column2.interior li + li {
 
276
    border-top: 1px solid #c1c7ac;
 
277
    border-top:1px solid #65675c;
 
278
}
 
279
.alt #column2.interior li + li {
 
280
    border-top: 1px solid #c1c7ac;
 
281
}
 
282
 
 
283
#column2.interior p.twitter {
 
284
    padding-top: 20px;
 
285
}
 
286
 
 
287
#column2.interior p.twitter a {
 
288
    background: url(http://nodejs.org/images/twitter-bird.png) no-repeat 0 4px;
 
289
    padding-left: 37px;
 
290
}
 
291
 
 
292
.row {
 
293
    padding-top: 10px;
 
294
    padding-bottom: 10px;
 
295
}
 
296
 
 
297
.row + .row {
 
298
    border-top: 1px solid #626557;
 
299
}
 
300
 
 
301
.row h2 {
 
302
    font-size: 24px;
 
303
    color: white;
 
304
    text-transform: none;
 
305
    font-family: Georgia, FreeSerif, Times, serif;
 
306
    background: url(http://nodejs.org/images/community-icons.png) no-repeat;
 
307
    padding-left: 45px;
 
308
    padding-top: 6px;
 
309
    padding-bottom: 10px;
 
310
    margin-top: 10px;
 
311
}
 
312
 
 
313
.row h2.github { background-position: left -92px; }
 
314
.row h2.mailing { background-position: left -308px; }
 
315
.row h2.periodicals { background-position: left -198px; padding-top: 9px; margin-top: 7px; }
 
316
.row h2.conferences { background-position: left -522px; }
 
317
.row h2.localized { background-position: left -414px; }
 
318
.row h2.irc { background-position: left -626px; }
 
319
 
 
320
.block {
 
321
    width: 280px;
 
322
    float: left;
 
323
}
 
324
 
 
325
.block + .block {
 
326
    margin-left: 20px;
 
327
    width: 300px;
 
328
}
 
329
 
 
330
#content .block p {
 
331
    font-size: 13px;
 
332
    line-height:21px;
 
333
}
 
334
 
 
335
#explore {
 
336
    background: url(http://nodejs.org/images/home-icons.png) no-repeat left 17px;
 
337
}
 
338
 
 
339
#explore li {
 
340
    list-style-type: none;
 
341
    color: #d2d8ba;
 
342
    line-height: 14px;
 
343
    padding: 10px 0 10px 40px;
 
344
    border-top: 1px solid #626557;
 
345
}
 
346
 
 
347
#explore li span {
 
348
}
 
349
 
 
350
#explore li a.explore {
 
351
    text-transform: uppercase;
 
352
}
 
353
 
 
354
#explore ol.jobs {
 
355
    padding: 0;
 
356
}
 
357
 
 
358
#explore ol.jobs li {
 
359
    display: inline;
 
360
    padding: 0;
 
361
    border: none;
 
362
}
 
363
 
 
364
#explore ol.jobs li:after {
 
365
    content: ', ';
 
366
}
 
367
 
 
368
#explore ol.jobs li:last-child:after {
 
369
    content: '';
 
370
}
 
371
 
 
372
#footer {
 
373
    width: 942px;
 
374
    margin: 150px auto 55px auto;
 
375
    padding:0;
 
376
}
 
377
 
 
378
#footer p {
 
379
    font-size: 11px;
 
380
    line-height:1em;
 
381
    padding: 0 0 0 195px;
 
382
    color: #666;
 
383
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, Tahoma, sans-serif;
 
384
}
 
385
 
 
386
#front #footer {
 
387
  width: 775px;
 
388
  margin: 50px auto 30px auto;
 
389
  padding-top: 15px;
 
390
}
 
391
#front #footer ul {
 
392
  margin-right:0;
 
393
  padding-right:0;
 
394
}
 
395
 
 
396
#footer a {
 
397
  text-decoration:none;
 
398
  border:none;
 
399
  color: #690;
 
400
}
 
401
 
 
402
#footer a:hover {
 
403
  color:#000;
 
404
}
 
405
#front #footer a:hover {
 
406
  color:#fff;
 
407
}
 
408
 
 
409
#footer p a {
 
410
    border-bottom:1px dotted #690;
 
411
    color: #878b78;
 
412
}
 
413
 
 
414
#footer ul {
 
415
    background: url(http://nodejs.org/images/footer-logo.png) left 17px no-repeat;
 
416
    border-top: 1px solid #626557;
 
417
    border-color:#90918b;
 
418
    padding-top:23px;
 
419
    padding-left: 195px;
 
420
    height: 26px;
 
421
    margin-right:137px;
 
422
}
 
423
.alt #footer ul {
 
424
    background-image: url(http://nodejs.org/images/footer-logo-alt.png);
 
425
}
 
426
 
 
427
#footer ul li {
 
428
    list-style-type: none;
 
429
    float: left;
 
430
    font-size: 12px;
 
431
    margin:0!important;
 
432
    height: 12px;
 
433
}
 
434
 
 
435
#footer ul li a {
 
436
    margin: 0;
 
437
    padding: 0 6px 0 0;
 
438
    display: block;
 
439
    height:12px;
 
440
    line-height:12px;
 
441
}
 
442
 
 
443
#footer ul li + li {
 
444
    margin-left: 3px;
 
445
}
 
446
 
 
447
#footer ul li + li a {
 
448
    padding: 0 6px 0 6px;
 
449
    border-left: 1px solid #878b78;
 
450
}
 
451
 
 
452
#footer ul li a.twitter  {
 
453
    background: url(http://nodejs.org/images/twitter-bird.png) no-repeat 5px 0px;
 
454
    padding-left: 25px;
 
455
}
 
456
 
 
457
 
 
458
 
 
459
div#download {
 
460
    position: absolute;
 
461
    width: 580px;
 
462
    text-align: center;
 
463
    top: 0;
 
464
    left: 50%;
 
465
    margin-left: -290px;
 
466
    -webkit-border-bottom-right-radius: 4px;
 
467
    -webkit-border-bottom-left-radius: 4px;
 
468
    -moz-border-radius-bottomright: 4px;
 
469
    -moz-border-radius-bottomleft: 4px;
 
470
    border-bottom-right-radius: 4px;
 
471
    border-bottom-left-radius: 4px;
 
472
    padding-top: 40px;
 
473
  -webkit-box-shadow: 0 0 32px #000;
 
474
     -moz-box-shadow: 0 0 32px #000;
 
475
          box-shadow: 0 0 32px #000;
 
476
    background:white;
 
477
    display: none;
 
478
}
 
479
 
 
480
div#download:target {
 
481
    display: block;
 
482
}
 
483
 
 
484
#download-close {
 
485
    background: url(http://nodejs.org/images/close-downloads.png) no-repeat top right;
 
486
    width: 64px;
 
487
    height: 64px;
 
488
    position: absolute;
 
489
    display: block;
 
490
    top:0;
 
491
    right:0;
 
492
    text-indent:-999em;
 
493
}
 
494
 
 
495
div#download ul#installers {
 
496
    width: 550px;
 
497
    text-align: center;
 
498
    margin: 0 auto;
 
499
    background: url(http://nodejs.org/images/platform-icons.png) no-repeat top center;
 
500
    padding-top: 65px;
 
501
    padding-bottom: 50px;
 
502
}
 
503
 
 
504
div#download ul#installers li {
 
505
    list-style-type: none;
 
506
    width: 165px;
 
507
    padding-left: 18px;
 
508
    float: left;
 
509
    display: block;
 
510
    color: #33342d;
 
511
    font-size: 10px;
 
512
}
 
513
 
 
514
div#download ul#installers li#source {
 
515
    padding-left: 0;
 
516
}
 
517
 
 
518
div#download ul#installers li a {
 
519
    font-size: 16px;
 
520
    padding-top: 50px;
 
521
    margin-top: -50px;
 
522
}
 
523
 
 
524
div#download ul#documentation {
 
525
    background-color: #d4d7c3;
 
526
    padding: 20px 0 20px 40px;
 
527
    -webkit-border-bottom-right-radius: 4px;
 
528
    -webkit-border-bottom-left-radius: 4px;
 
529
    -moz-border-radius-bottomright: 4px;
 
530
    -moz-border-radius-bottomleft: 4px;
 
531
    border-bottom-right-radius: 4px;
 
532
    border-bottom-left-radius: 4px;
 
533
}
 
534
 
 
535
div#download ul#documentation li {
 
536
    margin-left: 40px;
 
537
    text-align: left;
 
538
    color: #33342d;
 
539
    font-size: 14px;
 
540
    font-weight: bold;
 
541
    padding-bottom: 5px;
 
542
}
 
543
 
 
544
div#download ul#documentation li a {
 
545
    color: #76a83f;
 
546
}
 
547
 
 
548
#download-logo {
 
549
    margin-bottom: 37px;
 
550
}
 
551
 
 
552
  pre, tt, code {
 
553
          color: #d2d8ba;
 
554
    font-size: 14px;
 
555
    line-height: 22px;
 
556
    font-family: Monaco, Consolas, "Lucida Console", monospace;
 
557
    margin: 0; padding: 0;
 
558
  }
 
559
  #front pre, #front tt, #front code {
 
560
    font-size:12px;
 
561
    line-height:22px;
 
562
  }
74
563
 
75
564
pre {
76
565
        padding-left: 1em;
 
566
    margin-left: -1em;
77
567
        border-left-width: 1px;
78
568
        border-left-style: solid;
79
 
        border-left-color: #8BC84B;
 
569
        border-left-color: #626557;
 
570
}
 
571
 
 
572
.alt pre {
 
573
    font-size: 14px;
 
574
    margin-left: 0;
 
575
    border-left: 2px solid #dadad7;
 
576
    background-color: #f4f4f2;
 
577
    color: #46483e;
 
578
    padding: 1em 1.5em;
 
579
    line-height: 2em;
 
580
}
 
581
 
 
582
.alt code {
 
583
    color: #996633;
80
584
}
81
585
 
82
586
dd {
84
588
  margin-left: 1em;
85
589
}
86
590
 
 
591
 
87
592
a {
88
 
        color: #8BC84B;
 
593
        color: #690;
89
594
        text-decoration: none;
90
595
}
91
596
a:hover { text-decoration: underline; }
92
597
 
 
598
.alt a {
 
599
    background-color: #eff2db;
 
600
    padding: 0 2px;
 
601
}
 
602
 
 
603
.alt #intro a, .alt #footer a {
 
604
    background-color: transparent;
 
605
}
 
606
 
93
607
.highlight {
94
608
  background: #733;
95
609
  padding: 0.2em 0;
96
610
}
97
611
.desktops {
98
 
        font-size: 14px;
 
612
        font-size: 12px;
99
613
}
100
614
 
101
615
.release {
102
616
  margin: 0 0 0 2em;
103
617
}
 
618
 
 
619
/* simpler clearfix */
 
620
.clearfix:after {
 
621
    content: ".";
 
622
    display: block;
 
623
    height: 0;
 
624
    clear: both;
 
625
    visibility: hidden;
 
626
}
 
627