llt-review 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,855 @@
1
+ @font-face {
2
+ font-family: 'OpenSansLight';
3
+ src: url("../fonts/OpenSans-Light-webfont.eot");
4
+ src: url("../fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Light-webfont.woff") format("woff"), url("../fonts/OpenSans-Light-webfont.ttf") format("truetype"), url("../fonts/OpenSans-Light-webfont.svg#OpenSansLight") format("svg");
5
+ font-weight: normal;
6
+ font-style: normal;
7
+ }
8
+
9
+ @font-face {
10
+ font-family: 'OpenSansLightItalic';
11
+ src: url("../fonts/OpenSans-LightItalic-webfont.eot");
12
+ src: url("../fonts/OpenSans-LightItalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-LightItalic-webfont.woff") format("woff"), url("../fonts/OpenSans-LightItalic-webfont.ttf") format("truetype"), url("../fonts/OpenSans-LightItalic-webfont.svg#OpenSansLightItalic") format("svg");
13
+ font-weight: normal;
14
+ font-style: normal;
15
+ }
16
+
17
+ @font-face {
18
+ font-family: 'OpenSansRegular';
19
+ src: url("../fonts/OpenSans-Regular-webfont.eot");
20
+ src: url("../fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Regular-webfont.woff") format("woff"), url("../fonts/OpenSans-Regular-webfont.ttf") format("truetype"), url("../fonts/OpenSans-Regular-webfont.svg#OpenSansRegular") format("svg");
21
+ font-weight: normal;
22
+ font-style: normal;
23
+ -webkit-font-smoothing: antialiased;
24
+ }
25
+
26
+ @font-face {
27
+ font-family: 'OpenSansItalic';
28
+ src: url("../fonts/OpenSans-Italic-webfont.eot");
29
+ src: url("../fonts/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Italic-webfont.woff") format("woff"), url("../fonts/OpenSans-Italic-webfont.ttf") format("truetype"), url("../fonts/OpenSans-Italic-webfont.svg#OpenSansItalic") format("svg");
30
+ font-weight: normal;
31
+ font-style: normal;
32
+ -webkit-font-smoothing: antialiased;
33
+ }
34
+
35
+ @font-face {
36
+ font-family: 'OpenSansSemibold';
37
+ src: url("../fonts/OpenSans-Semibold-webfont.eot");
38
+ src: url("../fonts/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Semibold-webfont.woff") format("woff"), url("../fonts/OpenSans-Semibold-webfont.ttf") format("truetype"), url("../fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold") format("svg");
39
+ font-weight: normal;
40
+ font-style: normal;
41
+ -webkit-font-smoothing: antialiased;
42
+ }
43
+
44
+ @font-face {
45
+ font-family: 'OpenSansSemiboldItalic';
46
+ src: url("../fonts/OpenSans-SemiboldItalic-webfont.eot");
47
+ src: url("../fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-SemiboldItalic-webfont.woff") format("woff"), url("../fonts/OpenSans-SemiboldItalic-webfont.ttf") format("truetype"), url("../fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic") format("svg");
48
+ font-weight: normal;
49
+ font-style: normal;
50
+ -webkit-font-smoothing: antialiased;
51
+ }
52
+
53
+ @font-face {
54
+ font-family: 'OpenSansBold';
55
+ src: url("../fonts/OpenSans-Bold-webfont.eot");
56
+ src: url("../fonts/OpenSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Bold-webfont.woff") format("woff"), url("../fonts/OpenSans-Bold-webfont.ttf") format("truetype"), url("../fonts/OpenSans-Bold-webfont.svg#OpenSansBold") format("svg");
57
+ font-weight: normal;
58
+ font-style: normal;
59
+ -webkit-font-smoothing: antialiased;
60
+ }
61
+
62
+ @font-face {
63
+ font-family: 'OpenSansBoldItalic';
64
+ src: url("../fonts/OpenSans-BoldItalic-webfont.eot");
65
+ src: url("../fonts/OpenSans-BoldItalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-BoldItalic-webfont.woff") format("woff"), url("../fonts/OpenSans-BoldItalic-webfont.ttf") format("truetype"), url("../fonts/OpenSans-BoldItalic-webfont.svg#OpenSansBoldItalic") format("svg");
66
+ font-weight: normal;
67
+ font-style: normal;
68
+ -webkit-font-smoothing: antialiased;
69
+ }
70
+
71
+ /* normalize.css 2012-02-07T12:37 UTC - http://github.com/necolas/normalize.css */
72
+ /* =============================================================================
73
+ HTML5 display definitions
74
+ ========================================================================== */
75
+ /*
76
+ * Corrects block display not defined in IE6/7/8/9 & FF3
77
+ */
78
+ article,
79
+ aside,
80
+ details,
81
+ figcaption,
82
+ figure,
83
+ footer,
84
+ header,
85
+ hgroup,
86
+ nav,
87
+ section,
88
+ summary {
89
+ display: block;
90
+ }
91
+
92
+ /*
93
+ * Corrects inline-block display not defined in IE6/7/8/9 & FF3
94
+ */
95
+ audio,
96
+ canvas,
97
+ video {
98
+ display: inline-block;
99
+ *display: inline;
100
+ *zoom: 1;
101
+ }
102
+
103
+ /*
104
+ * Prevents modern browsers from displaying 'audio' without controls
105
+ */
106
+ audio:not([controls]) {
107
+ display: none;
108
+ }
109
+
110
+ /*
111
+ * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
112
+ * Known issue: no IE6 support
113
+ */
114
+ [hidden] {
115
+ display: none;
116
+ }
117
+
118
+ /* =============================================================================
119
+ Base
120
+ ========================================================================== */
121
+ /*
122
+ * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
123
+ * http://clagnut.com/blog/348/#c790
124
+ * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
125
+ * www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
126
+ */
127
+ html {
128
+ font-size: 100%;
129
+ /* 1 */
130
+ -webkit-text-size-adjust: 100%;
131
+ /* 2 */
132
+ -ms-text-size-adjust: 100%;
133
+ /* 2 */
134
+ }
135
+
136
+ /*
137
+ * Addresses font-family inconsistency between 'textarea' and other form elements.
138
+ */
139
+ html,
140
+ button,
141
+ input,
142
+ select,
143
+ textarea {
144
+ font-family: sans-serif;
145
+ }
146
+
147
+ /*
148
+ * Addresses margins handled incorrectly in IE6/7
149
+ */
150
+ body {
151
+ margin: 0;
152
+ }
153
+
154
+ /* =============================================================================
155
+ Links
156
+ ========================================================================== */
157
+ /*
158
+ * Addresses outline displayed oddly in Chrome
159
+ */
160
+ a:focus {
161
+ outline: thin dotted;
162
+ }
163
+
164
+ /*
165
+ * Improves readability when focused and also mouse hovered in all browsers
166
+ * people.opera.com/patrickl/experiments/keyboard/test
167
+ */
168
+ a:hover,
169
+ a:active {
170
+ outline: 0;
171
+ }
172
+
173
+ /* =============================================================================
174
+ Typography
175
+ ========================================================================== */
176
+ /*
177
+ * Addresses font sizes and margins set differently in IE6/7
178
+ * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
179
+ */
180
+ h1 {
181
+ font-size: 2em;
182
+ margin: 0.67em 0;
183
+ }
184
+
185
+ h2 {
186
+ font-size: 1.5em;
187
+ margin: 0.83em 0;
188
+ }
189
+
190
+ h3 {
191
+ font-size: 1.17em;
192
+ margin: 1em 0;
193
+ }
194
+
195
+ h4 {
196
+ font-size: 1em;
197
+ margin: 1.33em 0;
198
+ }
199
+
200
+ h5 {
201
+ font-size: 0.83em;
202
+ margin: 1.67em 0;
203
+ }
204
+
205
+ h6 {
206
+ font-size: 0.75em;
207
+ margin: 2.33em 0;
208
+ }
209
+
210
+ /*
211
+ * Addresses styling not present in IE7/8/9, S5, Chrome
212
+ */
213
+ abbr[title] {
214
+ border-bottom: 1px dotted;
215
+ }
216
+
217
+ /*
218
+ * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
219
+ */
220
+ b,
221
+ strong {
222
+ font-weight: bold;
223
+ }
224
+
225
+ blockquote {
226
+ margin: 1em 40px;
227
+ }
228
+
229
+ /*
230
+ * Addresses styling not present in S5, Chrome
231
+ */
232
+ dfn {
233
+ font-style: italic;
234
+ }
235
+
236
+ /*
237
+ * Addresses styling not present in IE6/7/8/9
238
+ */
239
+ mark {
240
+ background: #ff0;
241
+ color: #000;
242
+ }
243
+
244
+ /*
245
+ * Addresses margins set differently in IE6/7
246
+ */
247
+ p,
248
+ pre {
249
+ margin: 1em 0;
250
+ }
251
+
252
+ /*
253
+ * Corrects font family set oddly in IE6, S4/5, Chrome
254
+ * en.wikipedia.org/wiki/User:Davidgothberg/Test59
255
+ */
256
+ pre,
257
+ code,
258
+ kbd,
259
+ samp {
260
+ font-family: monospace, serif;
261
+ _font-family: 'courier new', monospace;
262
+ font-size: 1em;
263
+ }
264
+
265
+ /*
266
+ * 1. Addresses CSS quotes not supported in IE6/7
267
+ * 2. Addresses quote property not supported in S4
268
+ */
269
+ /* 1 */
270
+ q {
271
+ quotes: none;
272
+ }
273
+
274
+ /* 2 */
275
+ q:before,
276
+ q:after {
277
+ content: '';
278
+ content: none;
279
+ }
280
+
281
+ small {
282
+ font-size: 75%;
283
+ }
284
+
285
+ /*
286
+ * Prevents sub and sup affecting line-height in all browsers
287
+ * gist.github.com/413930
288
+ */
289
+ sub,
290
+ sup {
291
+ font-size: 75%;
292
+ line-height: 0;
293
+ position: relative;
294
+ vertical-align: baseline;
295
+ }
296
+
297
+ sup {
298
+ top: -0.5em;
299
+ }
300
+
301
+ sub {
302
+ bottom: -0.25em;
303
+ }
304
+
305
+ /* =============================================================================
306
+ Lists
307
+ ========================================================================== */
308
+ /*
309
+ * Addresses margins set differently in IE6/7
310
+ */
311
+ dl,
312
+ menu,
313
+ ol,
314
+ ul {
315
+ margin: 1em 0;
316
+ }
317
+
318
+ dd {
319
+ margin: 0 0 0 40px;
320
+ }
321
+
322
+ /*
323
+ * Addresses paddings set differently in IE6/7
324
+ */
325
+ menu,
326
+ ol,
327
+ ul {
328
+ padding: 0 0 0 40px;
329
+ }
330
+
331
+ /*
332
+ * Corrects list images handled incorrectly in IE7
333
+ */
334
+ nav ul,
335
+ nav ol {
336
+ list-style: none;
337
+ list-style-image: none;
338
+ }
339
+
340
+ /* =============================================================================
341
+ Embedded content
342
+ ========================================================================== */
343
+ /*
344
+ * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
345
+ * 2. Improves image quality when scaled in IE7
346
+ * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
347
+ */
348
+ img {
349
+ border: 0;
350
+ /* 1 */
351
+ -ms-interpolation-mode: bicubic;
352
+ /* 2 */
353
+ }
354
+
355
+ /*
356
+ * Corrects overflow displayed oddly in IE9
357
+ */
358
+ svg:not(:root) {
359
+ overflow: hidden;
360
+ }
361
+
362
+ /* =============================================================================
363
+ Figures
364
+ ========================================================================== */
365
+ /*
366
+ * Addresses margin not present in IE6/7/8/9, S5, O11
367
+ */
368
+ figure {
369
+ margin: 0;
370
+ }
371
+
372
+ /* =============================================================================
373
+ Forms
374
+ ========================================================================== */
375
+ /*
376
+ * Corrects margin displayed oddly in IE6/7
377
+ */
378
+ form {
379
+ margin: 0;
380
+ }
381
+
382
+ /*
383
+ * Define consistent border, margin, and padding
384
+ */
385
+ fieldset {
386
+ border: 1px solid #c0c0c0;
387
+ margin: 0 2px;
388
+ padding: 0.35em 0.625em 0.75em;
389
+ }
390
+
391
+ /*
392
+ * 1. Corrects color not being inherited in IE6/7/8/9
393
+ * 2. Corrects text not wrapping in FF3
394
+ * 3. Corrects alignment displayed oddly in IE6/7
395
+ */
396
+ legend {
397
+ border: 0;
398
+ /* 1 */
399
+ padding: 0;
400
+ white-space: normal;
401
+ /* 2 */
402
+ *margin-left: -7px;
403
+ /* 3 */
404
+ }
405
+
406
+ /*
407
+ * 1. Corrects font size not being inherited in all browsers
408
+ * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
409
+ * 3. Improves appearance and consistency in all browsers
410
+ */
411
+ button,
412
+ input,
413
+ select,
414
+ textarea {
415
+ font-size: 100%;
416
+ /* 1 */
417
+ margin: 0;
418
+ /* 2 */
419
+ vertical-align: baseline;
420
+ /* 3 */
421
+ *vertical-align: middle;
422
+ /* 3 */
423
+ }
424
+
425
+ /*
426
+ * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
427
+ */
428
+ button,
429
+ input {
430
+ line-height: normal;
431
+ /* 1 */
432
+ }
433
+
434
+ /*
435
+ * 1. Improves usability and consistency of cursor style between image-type 'input' and others
436
+ * 2. Corrects inability to style clickable 'input' types in iOS
437
+ * 3. Removes inner spacing in IE7 without affecting normal text inputs
438
+ * Known issue: inner spacing remains in IE6
439
+ */
440
+ button,
441
+ input[type="button"],
442
+ input[type="reset"],
443
+ input[type="submit"] {
444
+ cursor: pointer;
445
+ /* 1 */
446
+ -webkit-appearance: button;
447
+ /* 2 */
448
+ *overflow: visible;
449
+ /* 3 */
450
+ }
451
+
452
+ /*
453
+ * Re-set default cursor for disabled elements
454
+ */
455
+ button[disabled],
456
+ input[disabled] {
457
+ cursor: default;
458
+ }
459
+
460
+ /*
461
+ * 1. Addresses box sizing set to content-box in IE8/9
462
+ * 2. Removes excess padding in IE8/9
463
+ * 3. Removes excess padding in IE7
464
+ Known issue: excess padding remains in IE6
465
+ */
466
+ input[type="checkbox"],
467
+ input[type="radio"] {
468
+ box-sizing: border-box;
469
+ /* 1 */
470
+ padding: 0;
471
+ /* 2 */
472
+ *height: 13px;
473
+ /* 3 */
474
+ *width: 13px;
475
+ /* 3 */
476
+ }
477
+
478
+ /*
479
+ * 1. Addresses appearance set to searchfield in S5, Chrome
480
+ * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
481
+ */
482
+ input[type="search"] {
483
+ -webkit-appearance: textfield;
484
+ /* 1 */
485
+ -moz-box-sizing: content-box;
486
+ -webkit-box-sizing: content-box;
487
+ /* 2 */
488
+ box-sizing: content-box;
489
+ }
490
+
491
+ /*
492
+ * Removes inner padding and search cancel button in S5, Chrome on OS X
493
+ */
494
+ input[type="search"]::-webkit-search-decoration,
495
+ input[type="search"]::-webkit-search-cancel-button {
496
+ -webkit-appearance: none;
497
+ }
498
+
499
+ /*
500
+ * Removes inner padding and border in FF3+
501
+ * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
502
+ */
503
+ button::-moz-focus-inner,
504
+ input::-moz-focus-inner {
505
+ border: 0;
506
+ padding: 0;
507
+ }
508
+
509
+ /*
510
+ * 1. Removes default vertical scrollbar in IE6/7/8/9
511
+ * 2. Improves readability and alignment in all browsers
512
+ */
513
+ textarea {
514
+ overflow: auto;
515
+ /* 1 */
516
+ vertical-align: top;
517
+ /* 2 */
518
+ }
519
+
520
+ /* =============================================================================
521
+ Tables
522
+ ========================================================================== */
523
+ /*
524
+ * Remove most spacing between table cells
525
+ */
526
+ table {
527
+ border-collapse: collapse;
528
+ border-spacing: 0;
529
+ }
530
+
531
+ body {
532
+ padding: 0px 0 20px 0px;
533
+ margin: 0px;
534
+ font: 14px/1.5 "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
535
+ color: #f0e7d5;
536
+ font-weight: normal;
537
+ background: #252525;
538
+ background-attachment: fixed !important;
539
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a2a29), color-stop(100%, #1c1c1c));
540
+ background: -webkit-linear-gradient(#2a2a29, #1c1c1c);
541
+ background: -moz-linear-gradient(#2a2a29, #1c1c1c);
542
+ background: -o-linear-gradient(#2a2a29, #1c1c1c);
543
+ background: -ms-linear-gradient(#2a2a29, #1c1c1c);
544
+ background: linear-gradient(#2a2a29, #1c1c1c);
545
+ }
546
+
547
+ h1, h2, h3, h4, h5, h6 {
548
+ color: #e8e8e8;
549
+ margin: 0 0 10px;
550
+ font-family: 'OpenSansRegular', "Helvetica Neue", Helvetica, Arial, sans-serif;
551
+ font-weight: normal;
552
+ }
553
+
554
+ p, ul, ol, table, pre, dl {
555
+ margin: 0 0 20px;
556
+ }
557
+
558
+ h1, h2, h3 {
559
+ line-height: 1.1;
560
+ }
561
+
562
+ h1 {
563
+ font-size: 28px;
564
+ }
565
+
566
+ h2 {
567
+ font-size: 24px;
568
+ }
569
+
570
+ h4, h5, h6 {
571
+ color: #e8e8e8;
572
+ }
573
+
574
+ h3 {
575
+ font-size: 18px;
576
+ line-height: 24px;
577
+ font-family: 'OpenSansRegular', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
578
+ font-weight: normal;
579
+ color: #b6b6b6;
580
+ }
581
+
582
+ #date {
583
+ color: #b6b6b6;
584
+ }
585
+
586
+ a {
587
+ color: #ffcc00;
588
+ font-weight: 400;
589
+ text-decoration: none;
590
+ }
591
+ a:hover {
592
+ color: #ffeb9b;
593
+ }
594
+
595
+ a small {
596
+ font-size: 11px;
597
+ color: #666;
598
+ margin-top: -0.6em;
599
+ display: block;
600
+ }
601
+
602
+ ul {
603
+ list-style-image: url("../images/bullet.png");
604
+ }
605
+
606
+ strong {
607
+ font-family: 'OpenSansBold', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
608
+ font-weight: normal;
609
+ }
610
+
611
+ .wrapper {
612
+ max-width: 650px;
613
+ margin: 0 auto;
614
+ position: relative;
615
+ padding: 0 20px;
616
+ }
617
+
618
+ section img {
619
+ max-width: 100%;
620
+ }
621
+
622
+ blockquote {
623
+ border-left: 3px solid #ffcc00;
624
+ margin: 0;
625
+ padding: 0 0 0 20px;
626
+ font-style: italic;
627
+ }
628
+
629
+ code {
630
+ font-family: "Lucida Sans", Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal;
631
+ color: #efefef;
632
+ font-size: 13px;
633
+ margin: 0 4px;
634
+ padding: 4px 6px;
635
+ -moz-border-radius: 2px;
636
+ -webkit-border-radius: 2px;
637
+ -o-border-radius: 2px;
638
+ -ms-border-radius: 2px;
639
+ -khtml-border-radius: 2px;
640
+ border-radius: 2px;
641
+ }
642
+
643
+ pre {
644
+ padding: 8px 15px;
645
+ background: #191919;
646
+ -moz-border-radius: 2px;
647
+ -webkit-border-radius: 2px;
648
+ -o-border-radius: 2px;
649
+ -ms-border-radius: 2px;
650
+ -khtml-border-radius: 2px;
651
+ border-radius: 2px;
652
+ border: 1px solid #121212;
653
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
654
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
655
+ -o-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
656
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
657
+ overflow: auto;
658
+ overflow-y: hidden;
659
+ }
660
+ pre code {
661
+ color: #efefef;
662
+ text-shadow: 0px 1px 0px #000;
663
+ margin: 0;
664
+ padding: 0;
665
+ }
666
+
667
+ table {
668
+ width: 100%;
669
+ border-collapse: collapse;
670
+ }
671
+
672
+ th {
673
+ text-align: left;
674
+ padding: 5px 10px;
675
+ border-bottom: 1px solid #434343;
676
+ color: #b6b6b6;
677
+ font-family: 'OpenSansSemibold', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
678
+ font-weight: normal;
679
+ }
680
+
681
+ td {
682
+ text-align: left;
683
+ padding: 5px 10px;
684
+ border-bottom: 1px solid #434343;
685
+ }
686
+
687
+ hr {
688
+ border: 0;
689
+ outline: none;
690
+ height: 3px;
691
+ background: transparent url("../images/hr.gif") center center repeat-x;
692
+ margin: 0 0 20px;
693
+ }
694
+
695
+ dt {
696
+ color: #F0E7D5;
697
+ font-family: 'OpenSansSemibold', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
698
+ font-weight: normal;
699
+ }
700
+
701
+ #header {
702
+ z-index: 100;
703
+ left: 0;
704
+ top: 0px;
705
+ height: 60px;
706
+ width: 100%;
707
+ position: fixed;
708
+ background: url(../images/nav-bg.gif) #353535;
709
+ border-bottom: 4px solid #434343;
710
+ -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
711
+ -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
712
+ -o-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
713
+ box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
714
+ }
715
+ #header nav {
716
+ max-width: 650px;
717
+ margin: 0 auto;
718
+ padding: 0 10px;
719
+ background: blue;
720
+ margin: 6px auto;
721
+ }
722
+ #header nav li {
723
+ font-family: 'OpenSansLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
724
+ font-weight: normal;
725
+ list-style: none;
726
+ display: inline;
727
+ color: white;
728
+ line-height: 50px;
729
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
730
+ font-size: 14px;
731
+ }
732
+ #header nav li a {
733
+ color: white;
734
+ border: 1px solid #5d910b;
735
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #93bd20), color-stop(100%, #659e10));
736
+ background: -webkit-linear-gradient(#93bd20, #659e10);
737
+ background: -moz-linear-gradient(#93bd20, #659e10);
738
+ background: -o-linear-gradient(#93bd20, #659e10);
739
+ background: -ms-linear-gradient(#93bd20, #659e10);
740
+ background: linear-gradient(#93bd20, #659e10);
741
+ -moz-border-radius: 2px;
742
+ -webkit-border-radius: 2px;
743
+ -o-border-radius: 2px;
744
+ -ms-border-radius: 2px;
745
+ -khtml-border-radius: 2px;
746
+ border-radius: 2px;
747
+ -moz-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), 0px 3px 7px rgba(0, 0, 0, 0.7);
748
+ -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), 0px 3px 7px rgba(0, 0, 0, 0.7);
749
+ -o-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), 0px 3px 7px rgba(0, 0, 0, 0.7);
750
+ box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), 0px 3px 7px rgba(0, 0, 0, 0.7);
751
+ background-color: #93bd20;
752
+ padding: 10px 12px;
753
+ margin-top: 6px;
754
+ line-height: 14px;
755
+ font-size: 14px;
756
+ display: inline-block;
757
+ text-align: center;
758
+ }
759
+ #header nav li a:hover {
760
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #749619), color-stop(100%, #527f0e));
761
+ background: -webkit-linear-gradient(#749619, #527f0e);
762
+ background: -moz-linear-gradient(#749619, #527f0e);
763
+ background: -o-linear-gradient(#749619, #527f0e);
764
+ background: -ms-linear-gradient(#749619, #527f0e);
765
+ background: linear-gradient(#749619, #527f0e);
766
+ background-color: #659e10;
767
+ border: 1px solid #527f0e;
768
+ -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(0, 0, 0, 0);
769
+ -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(0, 0, 0, 0);
770
+ -o-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(0, 0, 0, 0);
771
+ box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(0, 0, 0, 0);
772
+ }
773
+ #header nav li.fork {
774
+ float: left;
775
+ margin-left: 0px;
776
+ }
777
+ #header nav li.downloads {
778
+ float: right;
779
+ margin-left: 6px;
780
+ }
781
+ #header nav li.title {
782
+ float: right;
783
+ margin-right: 10px;
784
+ font-size: 11px;
785
+ }
786
+
787
+ section {
788
+ max-width: 800px;
789
+ padding: 0px 0px 50px 0px;
790
+ margin: 20px 0;
791
+ margin-top: 30px;
792
+ }
793
+ section #title {
794
+ border: 0;
795
+ outline: none;
796
+ margin: 0 0 30px 0;
797
+ padding: 0 0 5px 0;
798
+ }
799
+ section #title h1 {
800
+ font-family: 'OpenSansLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
801
+ font-weight: normal;
802
+ font-size: 40px;
803
+ text-align: center;
804
+ line-height: 36px;
805
+ }
806
+ section #title p {
807
+ color: #d7cfbe;
808
+ font-family: 'OpenSansLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
809
+ font-weight: normal;
810
+ font-size: 18px;
811
+ text-align: center;
812
+ }
813
+ section #title .credits {
814
+ font-size: 11px;
815
+ font-family: 'OpenSansRegular', "Helvetica Neue", Helvetica, Arial, sans-serif;
816
+ font-weight: normal;
817
+ color: #696969;
818
+ margin-top: -10px;
819
+ }
820
+ section #title .credits.left {
821
+ float: left;
822
+ }
823
+ section #title .credits.right {
824
+ float: right;
825
+ }
826
+
827
+ @media print, screen and (max-width: 720px) {
828
+ #title .credits {
829
+ display: block;
830
+ width: 100%;
831
+ line-height: 30px;
832
+ text-align: center;
833
+ }
834
+ #title .credits .left {
835
+ float: none;
836
+ display: block;
837
+ }
838
+ #title .credits .right {
839
+ float: none;
840
+ display: block;
841
+ }
842
+ }
843
+ @media print, screen and (max-width: 480px) {
844
+ #header {
845
+ margin-top: -20px;
846
+ }
847
+
848
+ section {
849
+ margin-top: 40px;
850
+ }
851
+
852
+ nav {
853
+ display: none;
854
+ }
855
+ }