clovemix-jekyll-theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ // Misc.
2
+ $misc: (
3
+ z-index-base: 10000
4
+ );
5
+
6
+ // Duration.
7
+ $duration: (
8
+ navPanel: 0.5s
9
+ );
10
+
11
+ // Size.
12
+ $size: (
13
+ navPanel: 275px
14
+ );
15
+
16
+ // Font.
17
+ $font: (
18
+ );
19
+
20
+ // Palette.
21
+ $palette: (
22
+ );
@@ -0,0 +1,1510 @@
1
+ @import 'libs/vars';
2
+ @import 'libs/functions';
3
+ @import 'libs/mixins';
4
+ @charset "UTF-8";
5
+ @import url("font-awesome.min.css");
6
+ @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900,300italic");
7
+
8
+ /*
9
+ Dopetrope by HTML5 UP
10
+ html5up.net | @ajlkn
11
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
12
+ */
13
+
14
+ @import "libs/skel";
15
+
16
+ @include skel-breakpoints((
17
+ desktop: '(min-width: 737px)',
18
+ tablet: '(min-width: 737px) and (max-width: 1200px)',
19
+ mobile: '(max-width: 736px)'
20
+ ));
21
+
22
+ @include skel-layout((
23
+ reset: 'full',
24
+ boxModel: 'border',
25
+ grid: true,
26
+ conditionals: true,
27
+ containers: true,
28
+ breakpoints: (
29
+ desktop: (
30
+ containers: 1200px,
31
+ grid: (
32
+ gutters: (50px, 50px)
33
+ ),
34
+ ),
35
+ tablet: (
36
+ containers: 960px,
37
+ grid: (
38
+ gutters: (25px, 25px)
39
+ ),
40
+ ),
41
+ mobile: (
42
+ containers: (100%, true),
43
+ grid: (
44
+ gutters: (20px, 20px)
45
+ ),
46
+ )
47
+ )
48
+ ));
49
+
50
+ /* Basic */
51
+
52
+ body {
53
+ background: #252122;
54
+ background-image: url('images/bg02.png');
55
+ font-family: 'Source Sans Pro';
56
+ font-weight: 300;
57
+ color: #5d5d5d;
58
+
59
+ &.is-loading * {
60
+ @include vendor('transition', 'none !important');
61
+ @include vendor('animation', 'none !important');
62
+ }
63
+ }
64
+
65
+ input, textarea, select {
66
+ font-family: 'Source Sans Pro';
67
+ font-weight: 300;
68
+ color: #5d5d5d;
69
+ }
70
+
71
+ strong, b {
72
+ color: #252122;
73
+ font-weight: 400;
74
+ }
75
+
76
+ i, em {
77
+ font-style: italic;
78
+ }
79
+
80
+ sub {
81
+ position: relative;
82
+ top: 0.5em;
83
+ font-size: 0.8em;
84
+ }
85
+
86
+ sup {
87
+ position: relative;
88
+ top: -0.5em;
89
+ font-size: 0.8em;
90
+ }
91
+
92
+ blockquote {
93
+ border-left: solid 0.75em #dddddd;
94
+ padding: 1em 0 1em 1.5em;
95
+ font-style: italic;
96
+ }
97
+
98
+ h1, h2, h3, h4, h5, h6 {
99
+ color: #252122;
100
+ font-weight: 700;
101
+ }
102
+
103
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
104
+ color: inherit;
105
+ text-decoration: none;
106
+ }
107
+
108
+ a {
109
+ color: #d52349;
110
+ text-decoration: underline;
111
+
112
+ &:hover {
113
+ text-decoration: none;
114
+ }
115
+ }
116
+
117
+ br.clear {
118
+ clear: both;
119
+ }
120
+
121
+ hr {
122
+ border: 0;
123
+ border-top: solid 1px #dddddd;
124
+ height: 1px;
125
+ margin: 2em 0 2em 0;
126
+ }
127
+
128
+ p, ul, ol, dl, table {
129
+ margin-bottom: 2em;
130
+ }
131
+
132
+ /* Form */
133
+
134
+ form {
135
+ label {
136
+ display: block;
137
+ color: #252122;
138
+ font-weight: 400;
139
+ margin: 0 0 0.5em 0;
140
+ }
141
+
142
+ input[type=text],
143
+ input[type=email],
144
+ input[type=password],
145
+ select,
146
+ textarea {
147
+ -webkit-appearance: none;
148
+ display: block;
149
+ border: 0;
150
+ padding: 0.75em 1em;
151
+ font-size: 1em;
152
+ border-radius: 5px;
153
+ border: solid 1px #dddddd;
154
+ background: #fff;
155
+ width: 100%;
156
+
157
+ &:focus {
158
+ box-shadow: inset 0px 0px 1px 1px #43bff0;
159
+ }
160
+ }
161
+
162
+ textarea {
163
+ height: 15em;
164
+ }
165
+
166
+ .formerize-placeholder {
167
+ color: #555 !important;
168
+ }
169
+
170
+ ::-webkit-input-placeholder {
171
+ color: #555 !important;
172
+ }
173
+
174
+ :-moz-placeholder {
175
+ color: #555 !important;
176
+ }
177
+
178
+ ::-moz-placeholder {
179
+ color: #555 !important;
180
+ }
181
+
182
+ :-ms-input-placeholder {
183
+ color: #555 !important;
184
+ }
185
+
186
+ ::-moz-focus-inner {
187
+ border: 0;
188
+ }
189
+ }
190
+
191
+ /* Tables */
192
+
193
+ table {
194
+ width: 100%;
195
+
196
+ &.default {
197
+ width: 100%;
198
+
199
+ tr {
200
+ border-top: solid 1px #dddddd;
201
+
202
+ &:first-child {
203
+ border-top: 0;
204
+ }
205
+ }
206
+
207
+ td {
208
+ padding: 0.5em 1em 0.5em 1em;
209
+
210
+ }
211
+
212
+ th {
213
+ text-align: left;
214
+ padding: 0.5em 1em 0.5em 1em;
215
+ font-weight: 700;
216
+ margin: 0 0 1em 0;
217
+ }
218
+
219
+ thead {
220
+ border-bottom: solid 2px #dddddd;
221
+ }
222
+ }
223
+ }
224
+
225
+ /* Section/Article */
226
+
227
+ section, article {
228
+ margin-bottom: 2.5em;
229
+
230
+ > :last-child,
231
+ &:last-child {
232
+ margin-bottom: 0;
233
+ }
234
+ }
235
+
236
+ header {
237
+ > p {
238
+ display: block;
239
+ font-style: italic;
240
+ }
241
+
242
+ &.major {
243
+ position: relative;
244
+ text-align: center;
245
+ border-top: solid 1px #ccc;
246
+ top: 1em;
247
+
248
+ h2 {
249
+ background: #fff;
250
+ position: relative;
251
+ top: -0.65em;
252
+ display: inline;
253
+ margin: 0;
254
+ padding: 0 1em 0 1em;
255
+ }
256
+ }
257
+ }
258
+
259
+ /* Box */
260
+
261
+ .box {
262
+ background: #ffffff;
263
+ border-bottom: solid 1px #ccc;
264
+ .image.featured {
265
+ position: relative;
266
+ width: auto;
267
+ }
268
+ }
269
+
270
+ /* Button */
271
+
272
+ input[type="button"],
273
+ input[type="submit"],
274
+ input[type="reset"],
275
+ button,
276
+ .button {
277
+ -webkit-appearance: none;
278
+ display: inline-block;
279
+ text-decoration: none;
280
+ cursor: pointer;
281
+ border: 0;
282
+ border-radius: 5px;
283
+ background: #d52349;
284
+ color: #fff !important;
285
+ font-weight: 700;
286
+ outline: 0;
287
+ @include vendor('transition', 'background-color .25s ease-in-out');
288
+
289
+ &:hover {
290
+ background: #e53359;
291
+ }
292
+
293
+ &:active {
294
+ background: #c51349;
295
+ }
296
+
297
+ &.alt {
298
+ background: #252122;
299
+
300
+ &:hover {
301
+ background: #353132;
302
+ }
303
+
304
+ &:active {
305
+ background: #151112;
306
+ }
307
+ }
308
+
309
+ &.icon {
310
+ &:before {
311
+ opacity: 0.35;
312
+ position: relative;
313
+ top: 0.05em;
314
+ margin-right: 0.75em;
315
+ }
316
+ }
317
+ }
318
+
319
+ /* Image */
320
+
321
+ .image {
322
+ display: inline-block;
323
+ outline: 0;
324
+
325
+ img {
326
+ display: block;
327
+ width: 100%;
328
+ }
329
+
330
+ &.centered {
331
+ display: block;
332
+ margin: 0 0 2em 0;
333
+
334
+ img {
335
+ margin: 0 auto;
336
+ width: auto;
337
+ }
338
+ }
339
+
340
+ &.featured {
341
+ display: block;
342
+ width: 100%;
343
+ margin: 0 0 2em 0;
344
+ }
345
+
346
+ &.left {
347
+ float: left;
348
+ margin: 0 2em 2em 0;
349
+ }
350
+ }
351
+
352
+ /* List */
353
+
354
+ ul {
355
+ &.default {
356
+ list-style: disc;
357
+ padding-left: 1em;
358
+
359
+ li {
360
+ padding-left: 0.5em;
361
+ }
362
+ }
363
+
364
+ &.contact {
365
+ li {
366
+ position: relative;
367
+ border-top: solid 1px #ddd;
368
+ padding: 1.3em 0 1.3em 7em;
369
+
370
+ h3 {
371
+ position: absolute;
372
+ left: 0;
373
+ top: 1.3em;
374
+ font-size: 1.1em;
375
+ }
376
+
377
+ p {
378
+ margin: 0;
379
+ }
380
+
381
+ &:first-child {
382
+ padding-top: 0;
383
+ border-top: 0;
384
+
385
+ h3 {
386
+ top: 0;
387
+ }
388
+ }
389
+ }
390
+ }
391
+
392
+ &.dates {
393
+ li {
394
+ position: relative;
395
+ border-top: solid 1px #ddd;
396
+ padding: 1.3em 0 1.3em 6.75em;
397
+ }
398
+
399
+ .date {
400
+ display: block;
401
+ position: absolute;
402
+ left: 0;
403
+ top: 1.3em;
404
+ background-color: #d52349;
405
+ height: 3.5em;
406
+ text-align: center;
407
+ color: #fff;
408
+ line-height: 1em;
409
+ border-top-left-radius: 5px;
410
+ border-bottom-left-radius: 5px;
411
+ padding: 0.5em 0.75em 0 1em;
412
+
413
+ &:after {
414
+ content: '';
415
+ position: absolute;
416
+ bottom: 0;
417
+ right: -1.2em;
418
+ border-left: solid 1.25em #d52349;
419
+ border-top: solid 1.8em transparent;
420
+ border-bottom: solid 1.8em transparent;
421
+ }
422
+
423
+ strong {
424
+ display: block;
425
+ font-size: 1.75em;
426
+ padding-top: 0.15em;
427
+ }
428
+ }
429
+
430
+ h3 {
431
+ font-size: 1.1em;
432
+ }
433
+
434
+ p {
435
+ margin: 0;
436
+ }
437
+
438
+ li {
439
+ &:first-child {
440
+ border-top: 0;
441
+ padding-top: 0;
442
+ .date {
443
+ top: 0;
444
+ }
445
+ }
446
+ }
447
+ }
448
+
449
+ &.divided {
450
+ li {
451
+ border-top: solid 1px #ddd;
452
+ padding: 1em 0 1em 0;
453
+
454
+ &:first-child {
455
+ border-top: 0;
456
+ padding-top: 0;
457
+ }
458
+ }
459
+ }
460
+
461
+ &.social {
462
+ overflow: hidden;
463
+ cursor: default;
464
+
465
+ li {
466
+ display: inline-block;
467
+
468
+ &:first-child {
469
+ margin-left: 0;
470
+ }
471
+
472
+ a {
473
+ display: inline-block;
474
+ width: 3em;
475
+ height: 3em;
476
+ text-align: center;
477
+ border-radius: 5px;
478
+ background: #888;
479
+ @include vendor('transition', 'background-color .25s ease-in-out');
480
+
481
+ &:before {
482
+ color: #fff;
483
+ font-size: 2em;
484
+ line-height: 1.5em;
485
+ }
486
+
487
+ &.fa-facebook {
488
+ background: #3c5a98;
489
+
490
+ &:hover {
491
+ background: #4c6aa8;
492
+ }
493
+ }
494
+
495
+ &.fa-twitter {
496
+ background: #2daae4;
497
+
498
+ &:hover {
499
+ background: #3dbaf4;
500
+ }
501
+ }
502
+
503
+ &.fa-dribbble {
504
+ background: #c4376b;
505
+
506
+ &:hover {
507
+ background: #d4477b;
508
+ }
509
+ }
510
+
511
+ &.fa-linkedin {
512
+ background: #006599;
513
+
514
+ &:hover {
515
+ background: #1075a9;
516
+ }
517
+ }
518
+
519
+ &.fa-tumblr {
520
+ background: #2b4661;
521
+
522
+ &:hover {
523
+ background: #3b5671;
524
+ }
525
+ }
526
+
527
+ &.fa-google-plus {
528
+ background: #da2713;
529
+
530
+ &:hover {
531
+ background: #ea3723;
532
+ }
533
+ }
534
+ }
535
+ }
536
+ }
537
+ }
538
+
539
+ ol {
540
+ &.default {
541
+ list-style: decimal;
542
+ padding-left: 1.25em;
543
+
544
+ li {
545
+ padding-left: 0.25em;
546
+ }
547
+ }
548
+ }
549
+
550
+ /* Icons */
551
+
552
+ .icon {
553
+ position: relative;
554
+ text-decoration: none;
555
+
556
+ &:before {
557
+ -moz-osx-font-smoothing: grayscale;
558
+ -webkit-font-smoothing: antialiased;
559
+ font-family: FontAwesome;
560
+ font-style: normal;
561
+ font-weight: normal;
562
+ text-transform: none !important;
563
+ }
564
+
565
+ > .label {
566
+ display: none;
567
+ }
568
+
569
+ &.featured {
570
+ position: relative;
571
+ display: inline-block;
572
+ background-color: #d52349;
573
+ width: 9em;
574
+ padding: 1.75em 0 0.75em 0;
575
+ border-top-left-radius: 5px;
576
+ border-top-right-radius: 5px;
577
+ margin: 0 0 4.5em 0;
578
+ cursor: default;
579
+
580
+ &:before {
581
+ font-size: 4.5em;
582
+ line-height: 1em;
583
+ color: #fff;
584
+ }
585
+
586
+ &:after {
587
+ content: '';
588
+ position: absolute;
589
+ bottom: -1.95em;
590
+ left: 0;
591
+ border-top: solid 2em #d52349;
592
+ border-left: solid 4.5em transparent;
593
+ border-right: solid 4.5em transparent;
594
+ }
595
+
596
+ &.alt {
597
+ background-color: #252122;
598
+
599
+ &:after {
600
+ border-top-color: #252122;
601
+ }
602
+ }
603
+
604
+ &.alt2 {
605
+ background-color: #827a7c;
606
+
607
+ &:after {
608
+ border-top-color: #827a7c;
609
+ }
610
+ }
611
+ }
612
+ }
613
+
614
+ /* Banner */
615
+
616
+ #banner {
617
+ background: #CCE8F4 url('../../images/pic01.jpg');
618
+ background-position: center center;
619
+ background-size: auto 100%;
620
+ background-repeat: no-repeat;
621
+ text-align: center;
622
+
623
+ header {
624
+ background-color: #252122;
625
+ background-color: rgba(34, 30, 31, 0.98);
626
+
627
+ h2 {
628
+ color: #fff;
629
+ font-weight: 700;
630
+ }
631
+
632
+ p {
633
+ color: #d52349;
634
+ padding: 0;
635
+ font-style: normal;
636
+ margin: 0;
637
+ }
638
+ }
639
+ }
640
+
641
+ /* Wrappers */
642
+
643
+ #header-wrapper {
644
+ position: relative;
645
+ background: #ffffff;
646
+ border-bottom: solid 1px #ccc;
647
+ }
648
+
649
+ #main-wrapper {
650
+ position: relative;
651
+ background: #f7f7f7 url('images/bg02.png');
652
+
653
+ &:before {
654
+ content: '';
655
+ position: absolute;
656
+ top: 0;
657
+ left: 0;
658
+ width: 100%;
659
+ background: url('images/bg01.png');
660
+ background-size: 100% 100%;
661
+ z-index: 0;
662
+ opacity: 0.1;
663
+ }
664
+
665
+ .major {
666
+ h2 {
667
+ background: #f7f7f7 url('images/bg02.png');
668
+ }
669
+ }
670
+ }
671
+
672
+ #footer-wrapper {
673
+ position: relative;
674
+ color: #858484;
675
+
676
+ &:before {
677
+ content: '';
678
+ position: absolute;
679
+ top: 0;
680
+ left: 0;
681
+ width: 100%;
682
+ background: url('images/bg01.png');
683
+ background-size: 100% 100%;
684
+ z-index: 0;
685
+ opacity: 0.5;
686
+ }
687
+
688
+ a {
689
+ color: #c5c4c4;
690
+ }
691
+
692
+ h2, h3, h4, h5, h6, strong, b {
693
+ color: #fff;
694
+
695
+ a {
696
+ color: inherit;
697
+ }
698
+ }
699
+
700
+ ul {
701
+ &.contact li,
702
+ &.dates li,
703
+ &.divided li {
704
+ border-top-color: #353434;
705
+ border-top-color: rgba(255, 255, 255, 0.05);
706
+ }
707
+ }
708
+ }
709
+
710
+ /* Intro */
711
+
712
+ #intro {
713
+ text-align: center;
714
+ }
715
+
716
+ /* Copyright */
717
+
718
+ #copyright {
719
+ text-align: center;
720
+
721
+ .links {
722
+ display: inline-block;
723
+ background: #2C2929;
724
+ background: rgba(255, 255, 255, 0.05);
725
+ border-radius: 5px;
726
+ margin: 0;
727
+ }
728
+ }
729
+
730
+ /* Desktop */
731
+
732
+ @include breakpoint(desktop) {
733
+
734
+ /* Basic */
735
+
736
+ body, input, textarea, select {
737
+ font-size: 13pt;
738
+ line-height: 1.75em;
739
+ }
740
+
741
+ h2 {
742
+ font-size: 1.5em;
743
+ }
744
+
745
+ h3 {
746
+ font-size: 1.35em;
747
+ }
748
+
749
+ /* Section/Article */
750
+
751
+ header {
752
+ margin: 0 0 1.5em 0;
753
+
754
+ > p {
755
+ margin: 0.5em 0 0 0;
756
+ padding-bottom: 0.5em;
757
+ }
758
+
759
+ &.major {
760
+ margin: 0 0 3em 0;
761
+ }
762
+ }
763
+
764
+ footer {
765
+ margin: 2.25em 0 0 0;
766
+ }
767
+
768
+ /* Box */
769
+
770
+ .box {
771
+ padding: 2.75em 1.75em 2.75em 1.75em;
772
+
773
+ .image {
774
+ &.featured {
775
+ left: 1.75em;
776
+ top: 1.75em;
777
+ margin: -4.5em 0 4.25em -3.5em;
778
+ }
779
+ }
780
+
781
+ &.post {
782
+ header {
783
+ padding-top: 1em;
784
+ margin: 0 0 2em 0;
785
+ }
786
+
787
+ h2 {
788
+ font-size: 2.5em;
789
+ letter-spacing: -0.015em;
790
+ }
791
+
792
+ header {
793
+ > p {
794
+ margin-top: 1.25em;
795
+ font-size: 1.25em;
796
+ }
797
+ }
798
+ }
799
+ }
800
+
801
+ /* Button */
802
+
803
+ input[type="button"],
804
+ input[type="submit"],
805
+ input[type="reset"],
806
+ button,
807
+ .button {
808
+ font-size: 1.1em;
809
+ padding: 0.65em 1.5em 0.65em 1.5em;
810
+
811
+ &.big {
812
+ font-size: 1.5em;
813
+ padding: 0.75em 1.5em 0.75em 1.5em;
814
+ }
815
+ }
816
+
817
+ /* List */
818
+
819
+ ul {
820
+ &.actions {
821
+ li {
822
+ display: inline-block;
823
+ margin-left: 1em;
824
+
825
+ &:first-child {
826
+ margin-left: 0;
827
+ }
828
+ }
829
+ }
830
+
831
+ &.links {
832
+ li {
833
+ display: inline-block;
834
+ border-left: solid 1px rgba(255, 255, 255, 0.05);
835
+ padding: 0 0 0 1em;
836
+ margin: 0 0 0 1em;
837
+
838
+ &:first-child {
839
+ border-left: 0;
840
+ padding-left: 0;
841
+ margin-left: 0;
842
+ }
843
+ }
844
+ }
845
+
846
+ &.social {
847
+ margin: 0 0 3.25em 0;
848
+
849
+ li {
850
+ margin-left: 0.75em;
851
+ }
852
+ }
853
+ }
854
+
855
+ /* Wrappers */
856
+
857
+ #header-wrapper {
858
+ padding: 4.5em 0 4em 0;
859
+ }
860
+
861
+ #main-wrapper {
862
+ padding: 4em 0 4em 0;
863
+ }
864
+
865
+ #footer-wrapper {
866
+ padding: 4em 0 4em 0;
867
+
868
+ header {
869
+ margin: 0 0 3em 0;
870
+
871
+ h2 {
872
+ font-size: 1.75em;
873
+ }
874
+ }
875
+ }
876
+
877
+ /* Header */
878
+
879
+ #header {
880
+ text-align: center;
881
+
882
+ h1 {
883
+ color: #252122;
884
+ font-weight: 900;
885
+ font-size: 2.5em;
886
+ letter-spacing: -0.035em;
887
+ margin: 0 0 1em 0;
888
+ }
889
+ }
890
+
891
+ /* Nav */
892
+
893
+ #nav {
894
+ > ul {
895
+ margin: 0;
896
+
897
+ > li {
898
+ display: inline-block;
899
+ font-style: italic;
900
+ margin: 0 0.35em 0 0.35em;
901
+
902
+ > ul {
903
+ display: none;
904
+ }
905
+
906
+ > a {
907
+ border-radius: 5px;
908
+ color: #5d5d5d;
909
+ text-decoration: none;
910
+ padding: 0.6em 1.2em 0.6em 1.2em;
911
+ @include vendor('transition', 'background-color .25s ease-in-out');
912
+ outline: 0;
913
+ }
914
+
915
+ &:hover, &.active {
916
+ > a {
917
+ background: #f3f3f3;
918
+ }
919
+ }
920
+
921
+ &.current {
922
+ > a {
923
+ background: #d52349;
924
+ color: #fff !important;
925
+ font-weight: 700;
926
+ }
927
+ }
928
+ }
929
+ }
930
+ }
931
+
932
+ .dropotron {
933
+ border-radius: 5px;
934
+ background-color: #252122;
935
+ background-color: rgba(34, 30, 31, 0.98);
936
+ padding: 1.25em 1.5em 1.25em 1.5em;
937
+ font-style: italic;
938
+ min-width: 13em;
939
+ box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.5);
940
+ text-align: left;
941
+ margin-top: -1.25em;
942
+ margin-left: -1px;
943
+
944
+ a, span {
945
+ color: #aaa;
946
+ text-decoration: none;
947
+ @include vendor('transition', 'color .25s ease-in-out');
948
+ }
949
+
950
+ li {
951
+ padding: 0.25em 0 0.25em 0;
952
+
953
+ &:hover > {
954
+ a, span {
955
+ color: #fff;
956
+ }
957
+ }
958
+ }
959
+
960
+ &.level-0 {
961
+ margin-top: 2em;
962
+
963
+ &:before {
964
+ content: '';
965
+ display: block;
966
+ position: absolute;
967
+ left: 50%;
968
+ margin-left: -10px;
969
+ top: -9px;
970
+ border-left: solid 10px transparent;
971
+ border-right: solid 10px transparent;
972
+ border-bottom: solid 10px #252122;
973
+ border-bottom-color: rgba(34, 30, 31, 0.98);
974
+ }
975
+ }
976
+ }
977
+
978
+ /* Banner */
979
+
980
+ #banner {
981
+ position: relative;
982
+ padding: 8em 0;
983
+ margin: 4em 0 0 0;
984
+
985
+ header {
986
+ display: inline-block;
987
+ padding: 2.5em 5em;
988
+ border-radius: 5px;
989
+
990
+ h2 {
991
+ font-size: 2.5em;
992
+ margin: 0 0 0.65em 0;
993
+ }
994
+
995
+ p {
996
+ font-size: 1.5em;
997
+ }
998
+ }
999
+ }
1000
+
1001
+ /* Intro */
1002
+
1003
+ #intro {
1004
+ overflow: hidden;
1005
+
1006
+ section {
1007
+ margin: 3em 0;
1008
+ padding: 2.5em 0;
1009
+ }
1010
+
1011
+ h2 {
1012
+ font-size: 1.75em;
1013
+ }
1014
+
1015
+ p {
1016
+ margin: 0;
1017
+ }
1018
+
1019
+ .middle {
1020
+ position: relative;
1021
+ z-index: 1;
1022
+
1023
+ &:before {
1024
+ content: '';
1025
+ width: 32px;
1026
+ height: 100%;
1027
+ position: absolute;
1028
+ left: -24px;
1029
+ top: 0;
1030
+ display: block;
1031
+ z-index: -1;
1032
+ box-shadow: 32px 0 0 0 #fff, 0 -32px 0 0 #fff, 0 32px 0 0 #fff, 32px 32px 0 0 #fff, 32px -32px 0 0 #fff, 0 0 32px 0 rgba(0, 0, 0, 0.15);
1033
+ }
1034
+
1035
+ &:after {
1036
+ content: '';
1037
+ width: 32px;
1038
+ height: 100%;
1039
+ position: absolute;
1040
+ right: -24px;
1041
+ top: 0;
1042
+ display: block;
1043
+ z-index: -1;
1044
+ box-shadow: -32px 0 0 0 #fff, 0 -32px 0 0 #fff, 0 32px 0 0 #fff, -32px 32px 0 0 #fff, -32px -32px 0 0 #fff, 0 0 32px 0 rgba(0, 0, 0, 0.15);
1045
+ }
1046
+ }
1047
+
1048
+ .button {
1049
+ min-width: 12em;
1050
+ }
1051
+
1052
+ footer {
1053
+ margin: 0;
1054
+ }
1055
+ }
1056
+
1057
+ /* Copyright */
1058
+
1059
+ #copyright {
1060
+ margin: 3em 0 2em 0;
1061
+
1062
+ .links {
1063
+ padding: 0.85em 2.25em 0.85em 2.25em;
1064
+ }
1065
+ }
1066
+
1067
+ }
1068
+
1069
+ /* Tablet */
1070
+
1071
+ @include breakpoint(tablet) {
1072
+
1073
+ /* Basic */
1074
+
1075
+ body {
1076
+ min-width: 960px;
1077
+ font-size: 11pt;
1078
+ }
1079
+
1080
+ input, textarea, select {
1081
+ font-size: 11pt;
1082
+ }
1083
+
1084
+ /* Section/Article */
1085
+
1086
+ header{
1087
+ &.major {
1088
+ margin: 0.75em 0 2.5em 0;
1089
+
1090
+ h2 {
1091
+ padding: 0 1em 0 1em;
1092
+ }
1093
+ }
1094
+ }
1095
+
1096
+ /* List */
1097
+
1098
+ ul {
1099
+ &.social {
1100
+ li {
1101
+ margin: 0 0 0.25em 0.75em;
1102
+ }
1103
+ }
1104
+ }
1105
+
1106
+ /* Wrappers */
1107
+
1108
+ #header-wrapper {
1109
+ padding: 3em 0 3em 0;
1110
+ }
1111
+
1112
+ #main-wrapper {
1113
+ padding: 2.75em 0 2.75em 0;
1114
+ }
1115
+
1116
+ #footer-wrapper {
1117
+ padding: 3em 0 3em 0;
1118
+
1119
+ &:before {
1120
+ height: 2.5em;
1121
+ }
1122
+
1123
+ header {
1124
+ margin: 0 0 1.5em 0;
1125
+
1126
+ h2 {
1127
+ font-size: 1.25em;
1128
+ }
1129
+ }
1130
+ }
1131
+
1132
+ /* Header */
1133
+
1134
+ #header {
1135
+ h1 {
1136
+ margin: 0.25em 0 1em 0;
1137
+ }
1138
+ }
1139
+
1140
+ /* Banner */
1141
+
1142
+ #banner {
1143
+ padding: 6em 0;
1144
+ margin: 3em 0 0 0;
1145
+ }
1146
+
1147
+ /* Intro */
1148
+
1149
+ #intro {
1150
+ padding: 0;
1151
+
1152
+ section {
1153
+ padding: 1em 2em;
1154
+ }
1155
+
1156
+ .middle {
1157
+ &:before {
1158
+ left: -12px;
1159
+ }
1160
+
1161
+ &:after {
1162
+ right: -12px;
1163
+ }
1164
+ }
1165
+ }
1166
+
1167
+ /* Copyright */
1168
+
1169
+ #copyright {
1170
+ margin: 0;
1171
+ }
1172
+
1173
+ }
1174
+
1175
+ /* Mobile */
1176
+
1177
+ #navPanel, #titleBar {
1178
+ display: none;
1179
+ }
1180
+
1181
+ @include breakpoint(mobile) {
1182
+
1183
+ /* Basic */
1184
+ html, body {
1185
+ overflow-x: hidden;
1186
+ }
1187
+
1188
+ body, input, textarea, select {
1189
+ line-height: 1.75em;
1190
+ font-size: 11pt;
1191
+ letter-spacing: 0;
1192
+ }
1193
+
1194
+ h2, h3, h4, h5, h6 {
1195
+ font-size: 1.25em;
1196
+ }
1197
+
1198
+ /* Section/Article */
1199
+
1200
+ section, article {
1201
+ margin: 0 0 1.5em 0 !important;
1202
+ }
1203
+
1204
+ header {
1205
+ margin: 0 0 1em 0;
1206
+ }
1207
+
1208
+ footer {
1209
+ margin: 2em 0 0 0;
1210
+ }
1211
+
1212
+ /* Box */
1213
+
1214
+ .box {
1215
+ padding: 25px 15px 20px 15px;
1216
+
1217
+ .image.featured {
1218
+ left: 15px;
1219
+ top: 15px;
1220
+ margin: -40px 0 40px -30px;
1221
+ }
1222
+ }
1223
+
1224
+ /* Button */
1225
+
1226
+ input[type="button"],
1227
+ input[type="submit"],
1228
+ input[type="reset"],
1229
+ button,
1230
+ .button {
1231
+ position: relative;
1232
+ padding: 0.65em 0 0.65em 0 !important;
1233
+ width: 100%;
1234
+ text-align: center;
1235
+ font-size: 1.25em;
1236
+ margin: 0.25em 0 0.25em 0;
1237
+
1238
+ &.icon {
1239
+ padding-right: 1em !important;
1240
+ }
1241
+ }
1242
+
1243
+ /* List */
1244
+
1245
+ ul {
1246
+ &.actions {
1247
+ li {
1248
+ display: block;
1249
+ margin-top: 0.5em;
1250
+
1251
+ &:first-child {
1252
+ margin-top: 0;
1253
+ }
1254
+ }
1255
+ }
1256
+
1257
+ &.contact {
1258
+ li {
1259
+ padding: 0.8em 0 0.8em 7em;
1260
+
1261
+ h3 {
1262
+ top: 0.8em;
1263
+ }
1264
+ }
1265
+ }
1266
+
1267
+ &.divided {
1268
+ li {
1269
+ padding: 0.5em 0 0.5em 0;
1270
+ }
1271
+ }
1272
+
1273
+ &.links {
1274
+ li {
1275
+ display: block;
1276
+ border-top: solid 1px rgba(255, 255, 255, 0.05);
1277
+ padding: 0.25em 0 0 0;
1278
+ margin: 0.25em 0 0 0;
1279
+
1280
+ &:first-child {
1281
+ border-top: 0;
1282
+ padding-top: 0;
1283
+ margin-top: 0;
1284
+ }
1285
+ }
1286
+ }
1287
+
1288
+ &.social {
1289
+ li {
1290
+ margin: 0 0.5em 0.75em 0;
1291
+ }
1292
+ }
1293
+ }
1294
+
1295
+ /* Off-Canvas Navigation */
1296
+
1297
+ #page-wrapper {
1298
+ @include vendor('backface-visibility', 'hidden');
1299
+ @include vendor('transition', 'transform #{_duration(navPanel)} ease');
1300
+ padding-bottom: 1px;
1301
+ }
1302
+
1303
+ #titleBar {
1304
+ @include vendor('backface-visibility', 'hidden');
1305
+ @include vendor('transition', 'transform #{_duration(navPanel)} ease');
1306
+ display: block;
1307
+ height: 44px;
1308
+ left: 0;
1309
+ position: fixed;
1310
+ top: 0;
1311
+ width: 100%;
1312
+ z-index: _misc(z-index-base) + 1;
1313
+ background: none;
1314
+
1315
+ .toggle {
1316
+ width: 80px;
1317
+ height: 60px;
1318
+
1319
+ &:before {
1320
+ font-family: FontAwesome;
1321
+ text-decoration: none;
1322
+ font-style: normal;
1323
+ font-weight: normal;
1324
+ -webkit-font-smoothing: antialiased;
1325
+ -moz-osx-font-smoothing: grayscale;
1326
+ content: '\f0c9';
1327
+ display: block;
1328
+ position: absolute;
1329
+ left: 10px;
1330
+ top: 10px;
1331
+ width: 50px;
1332
+ height: 40px;
1333
+ line-height: 40px;
1334
+ font-size: 18px;
1335
+ color: #fff;
1336
+ text-align: center;
1337
+ background: rgba(150, 150, 150, 0.75);
1338
+ border-radius: 5px;
1339
+ }
1340
+
1341
+ &:active:before {
1342
+ background-color: rgba(150, 150, 150, 1);
1343
+ }
1344
+ }
1345
+ }
1346
+
1347
+ #navPanel {
1348
+ @include vendor('backface-visibility', 'hidden');
1349
+ @include vendor('transform', 'translateX(#{_size(navPanel) * -1})');
1350
+ @include vendor('transition', ('transform #{_duration(navPanel)} ease'));
1351
+ display: block;
1352
+ height: 100%;
1353
+ left: 0;
1354
+ overflow-y: auto;
1355
+ position: fixed;
1356
+ top: 0;
1357
+ width: _size(navPanel);
1358
+ z-index: _misc(z-index-base) + 2;
1359
+ color: #858484;
1360
+ background-image: url('images/bg02.png');
1361
+ box-shadow: inset -3px 0px 5px 0px rgba(0, 0, 0, 0.35);
1362
+
1363
+ .link {
1364
+ display: block;
1365
+ color: #888;
1366
+ text-decoration: none;
1367
+ height: 44px;
1368
+ line-height: 44px;
1369
+ border-top: solid 1px rgba(255, 255, 255, 0.05);
1370
+ padding: 0 1em 0 1em;
1371
+ font-style: italic;
1372
+
1373
+ &:first-child {
1374
+ border-top: 0;
1375
+ }
1376
+ }
1377
+
1378
+ .indent-1 {
1379
+ display: inline-block;
1380
+ width: 1em;
1381
+ }
1382
+
1383
+ .indent-2 {
1384
+ display: inline-block;
1385
+ width: 2em;
1386
+ }
1387
+
1388
+ .indent-3 {
1389
+ display: inline-block;
1390
+ width: 3em;
1391
+ }
1392
+
1393
+ .indent-4 {
1394
+ display: inline-block;
1395
+ width: 4em;
1396
+ }
1397
+
1398
+ .indent-5 {
1399
+ display: inline-block;
1400
+ width: 5em;
1401
+ }
1402
+
1403
+ .depth-0 {
1404
+ color: #fff;
1405
+ }
1406
+ }
1407
+
1408
+ body {
1409
+ &.navPanel-visible {
1410
+ #page-wrapper {
1411
+ @include vendor('transform', 'translateX(#{_size(navPanel)})');
1412
+ }
1413
+
1414
+ #titleBar {
1415
+ @include vendor('transform', 'translateX(#{_size(navPanel)})');
1416
+ }
1417
+
1418
+ #navPanel {
1419
+ @include vendor('transform', 'translateX(0)');
1420
+ }
1421
+ }
1422
+ }
1423
+
1424
+ /* Wrappers */
1425
+
1426
+ #main-wrapper {
1427
+ padding: 2em 10px;
1428
+ overflow: hidden;
1429
+ }
1430
+
1431
+ #header-wrapper {
1432
+ padding: 2em 0;
1433
+ }
1434
+
1435
+ #footer-wrapper {
1436
+ padding: 2em 25px;
1437
+ overflow: hidden;
1438
+ -webkit-transform: translateZ(0);
1439
+ }
1440
+
1441
+ /* Intro */
1442
+
1443
+ #intro {
1444
+ padding: 0 25px 0 25px;
1445
+
1446
+ section {
1447
+ position: relative;
1448
+ border-top: solid 1px #dfdfdf;
1449
+ padding: 2.5em 0 0 0;
1450
+ margin: 1.5em 0 0 0 !important;
1451
+
1452
+ &.first {
1453
+ border-top: 0;
1454
+ padding-top: 0;
1455
+ }
1456
+
1457
+ p {
1458
+ margin: 0;
1459
+ }
1460
+ }
1461
+ }
1462
+
1463
+ /* Header */
1464
+
1465
+ #header {
1466
+ text-align: center;
1467
+
1468
+ h1 {
1469
+ color: #252122;
1470
+ font-weight: 900;
1471
+ font-size: 1.75em;
1472
+ letter-spacing: -0.035em;
1473
+ }
1474
+ }
1475
+
1476
+ /* Nav */
1477
+
1478
+ #nav {
1479
+ display: none;
1480
+ }
1481
+
1482
+ /* Banner */
1483
+
1484
+ #banner {
1485
+ margin: 2em 0 4em 0 !important;
1486
+ padding: 6em 0;
1487
+ header {
1488
+ padding: 1.5em 1em 1.5em 1em;
1489
+ h2 {
1490
+ font-size: 1.5em;
1491
+ line-height: 1.5em;
1492
+ margin: 0 0 0.25em 0;
1493
+ }
1494
+ p {
1495
+ font-size: 1.2em;
1496
+ }
1497
+ }
1498
+ }
1499
+
1500
+ /* Copyright */
1501
+
1502
+ #copyright {
1503
+ margin: 3em 0 0 0;
1504
+
1505
+ .links {
1506
+ padding: 0.75em 1.25em 0.75em 1.25em;
1507
+ }
1508
+ }
1509
+
1510
+ }