fortyone-jekyll-theme 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +63 -0
  3. data/README.md +71 -0
  4. data/_includes/footer.html +105 -0
  5. data/_includes/head.html +9 -0
  6. data/_includes/header.html +30 -0
  7. data/_includes/tiles.html +28 -0
  8. data/_layouts/allposts.html +17 -0
  9. data/_layouts/alltags.html +59 -0
  10. data/_layouts/home.html +55 -0
  11. data/_layouts/landing.html +39 -0
  12. data/_layouts/page.html +17 -0
  13. data/_layouts/post.html +36 -0
  14. data/_sass/base/_page.scss +38 -0
  15. data/_sass/base/_typography.scss +173 -0
  16. data/_sass/components/_box.scss +25 -0
  17. data/_sass/components/_button.scss +132 -0
  18. data/_sass/components/_contact-method.scss +23 -0
  19. data/_sass/components/_form.scss +224 -0
  20. data/_sass/components/_icon.scss +50 -0
  21. data/_sass/components/_image.scss +62 -0
  22. data/_sass/components/_list.scss +148 -0
  23. data/_sass/components/_section.scss +69 -0
  24. data/_sass/components/_spotlights.scss +119 -0
  25. data/_sass/components/_table.scss +81 -0
  26. data/_sass/components/_tiles.scss +183 -0
  27. data/_sass/fortyone-jekyll-theme.scss +1 -0
  28. data/_sass/ie8.scss +50 -0
  29. data/_sass/ie9.scss +115 -0
  30. data/_sass/layout/_banner.scss +177 -0
  31. data/_sass/layout/_contact.scss +93 -0
  32. data/_sass/layout/_footer.scss +42 -0
  33. data/_sass/layout/_header.scss +248 -0
  34. data/_sass/layout/_main.scss +26 -0
  35. data/_sass/layout/_menu.scss +164 -0
  36. data/_sass/layout/_wrapper.scss +28 -0
  37. data/_sass/libs/_functions.scss +34 -0
  38. data/_sass/libs/_mixins.scss +56 -0
  39. data/_sass/libs/_skel.scss +585 -0
  40. data/_sass/libs/_vars.scss +47 -0
  41. data/_sass/main.scss +78 -0
  42. data/assets/css/font-awesome.min.css +4 -0
  43. data/assets/css/ie8.css +43 -0
  44. data/assets/css/ie9.css +94 -0
  45. data/assets/css/main.css +3916 -0
  46. data/assets/fonts/FontAwesome.otf +0 -0
  47. data/assets/fonts/fontawesome-webfont.eot +0 -0
  48. data/assets/fonts/fontawesome-webfont.svg +685 -0
  49. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  50. data/assets/fonts/fontawesome-webfont.woff +0 -0
  51. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  52. data/assets/images/banner.jpg +0 -0
  53. data/assets/images/forty.jpg +0 -0
  54. data/assets/images/pic01.jpg +0 -0
  55. data/assets/images/pic02.jpg +0 -0
  56. data/assets/images/pic03.jpg +0 -0
  57. data/assets/images/pic04.jpg +0 -0
  58. data/assets/images/pic05.jpg +0 -0
  59. data/assets/images/pic06.jpg +0 -0
  60. data/assets/images/pic07.jpg +0 -0
  61. data/assets/images/pic08.jpg +0 -0
  62. data/assets/images/pic09.jpg +0 -0
  63. data/assets/images/pic10.jpg +0 -0
  64. data/assets/images/pic11.jpg +0 -0
  65. data/assets/js/ie/.directory +3 -0
  66. data/assets/js/ie/backgroundsize.min.htc +7 -0
  67. data/assets/js/ie/html5shiv.js +8 -0
  68. data/assets/js/ie/respond.min.js +6 -0
  69. data/assets/js/jquery.min.js +5 -0
  70. data/assets/js/jquery.scrollex.min.js +2 -0
  71. data/assets/js/jquery.scrolly.min.js +2 -0
  72. data/assets/js/main.js +352 -0
  73. data/assets/js/skel.min.js +2 -0
  74. data/assets/js/util.js +587 -0
  75. metadata +146 -0
@@ -0,0 +1 @@
1
+ @import 'main';
data/_sass/ie8.scss ADDED
@@ -0,0 +1,50 @@
1
+ @import 'libs/vars';
2
+ @import 'libs/functions';
3
+ @import 'libs/mixins';
4
+ @import 'libs/skel';
5
+
6
+ /*
7
+ Forty by HTML5 UP
8
+ html5up.net | @ajlkn
9
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
10
+ */
11
+
12
+ /* Button */
13
+
14
+ .button {
15
+ border: solid 2px !important;
16
+
17
+ &.next {
18
+ padding-right: 1.75em;
19
+
20
+ &:before, &:after {
21
+ display: none;
22
+ }
23
+ }
24
+ }
25
+
26
+ /* Tiles */
27
+
28
+ .tiles {
29
+ article {
30
+ width: 50%;
31
+ -ms-behavior: url('assets/js/ie/backgroundsize.min.htc');
32
+ background-size: cover;
33
+ }
34
+ }
35
+
36
+ /* Banner */
37
+
38
+ #banner {
39
+ -ms-behavior: url('assets/js/ie/backgroundsize.min.htc');
40
+
41
+ &:after {
42
+ display: none;
43
+ }
44
+ }
45
+
46
+ /* Menu */
47
+
48
+ #menu {
49
+ background: _palette(bg);
50
+ }
data/_sass/ie9.scss ADDED
@@ -0,0 +1,115 @@
1
+ @import 'libs/vars';
2
+ @import 'libs/functions';
3
+ @import 'libs/mixins';
4
+ @import 'libs/skel';
5
+
6
+ /*
7
+ Forty by HTML5 UP
8
+ html5up.net | @ajlkn
9
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
10
+ */
11
+
12
+ /* Spotlights */
13
+
14
+ .spotlights {
15
+ > section {
16
+ &:after {
17
+ content: '';
18
+ display: block;
19
+ clear: both;
20
+ }
21
+
22
+ > .image {
23
+ float: left;
24
+ }
25
+
26
+ > .content {
27
+ float: left;
28
+ }
29
+ }
30
+ }
31
+
32
+ /* Tiles */
33
+
34
+ .tiles {
35
+ &:after {
36
+ content: '';
37
+ display: block;
38
+ clear: both;
39
+ }
40
+
41
+ article {
42
+ @include padding(8em, 4em);
43
+ float: left;
44
+ height: auto;
45
+ max-height: none;
46
+ min-height: 0;
47
+ }
48
+ }
49
+
50
+ /* Header */
51
+
52
+ #header {
53
+ .logo {
54
+ position: absolute;
55
+ top: 0;
56
+ left: 0;
57
+ }
58
+
59
+ nav {
60
+ position: absolute;
61
+ top: 0;
62
+ right: 0;
63
+ }
64
+ }
65
+
66
+ /* Banner */
67
+
68
+ #banner {
69
+ @include padding(6em, 0, (1em, 0, 0, 0));
70
+ background-attachment: scroll;
71
+ height: auto;
72
+ max-height: none;
73
+ min-height: 0;
74
+
75
+ > .inner {
76
+ .content {
77
+ display: block;
78
+
79
+ > * {
80
+ margin-left: 0;
81
+ margin: 0 0 _size(element-margin) 0;
82
+ }
83
+ }
84
+ }
85
+
86
+ &.major {
87
+ height: auto;
88
+ max-height: none;
89
+ min-height: 0;
90
+ }
91
+ }
92
+
93
+ /* Contact */
94
+
95
+ #contact {
96
+ &:after {
97
+ content: '';
98
+ display: block;
99
+ clear: both;
100
+ }
101
+
102
+ > .inner {
103
+ > * {
104
+ float: left;
105
+ }
106
+ }
107
+ }
108
+
109
+ /* Menu */
110
+
111
+ #menu {
112
+ .inner {
113
+ margin: 0 auto;
114
+ }
115
+ }
@@ -0,0 +1,177 @@
1
+ ///
2
+ /// Forty by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Banner */
8
+
9
+ #banner {
10
+ @include vendor('align-items', 'center');
11
+ @include vendor('background-image', 'url("../../images/banner.jpg")');
12
+ @include vendor('display', 'flex');
13
+ @include padding(4em, 0, (2em, 0, 0, 0));
14
+ background-attachment: fixed;
15
+ background-position: center;
16
+ background-repeat: no-repeat;
17
+ background-size: cover;
18
+ border-bottom: 0 !important;
19
+ cursor: default;
20
+ height: 60vh;
21
+ margin-bottom: -3.25em;
22
+ max-height: 32em;
23
+ min-height: 22em;
24
+ position: relative;
25
+ top: -3.25em;
26
+
27
+ &:after {
28
+ @include vendor('transition', 'opacity #{_duration(banner)} ease');
29
+ @include vendor('transition-delay', '0.75s');
30
+ @include vendor('pointer-events', 'none');
31
+ background-color: _palette(bg);
32
+ content: '';
33
+ display: block;
34
+ height: 100%;
35
+ left: 0;
36
+ opacity: 0.85;
37
+ position: absolute;
38
+ top: 0;
39
+ width: 100%;
40
+ z-index: 1;
41
+ }
42
+
43
+ h1 {
44
+ font-size: 3.25em;
45
+ }
46
+
47
+ > .inner {
48
+ @include vendor('transition', (
49
+ 'opacity 1.5s ease',
50
+ 'transform 0.5s ease-out',
51
+ 'filter 0.5s ease',
52
+ '-webkit-filter 0.5s ease'
53
+ ));
54
+ padding: 0 !important;
55
+ position: relative;
56
+ z-index: 2;
57
+
58
+ .image {
59
+ display: none;
60
+ }
61
+
62
+ header {
63
+ width: auto;
64
+
65
+ > :first-child {
66
+ width: auto;
67
+
68
+ &:after {
69
+ max-width: 100%;
70
+ }
71
+ }
72
+ }
73
+
74
+ .content {
75
+ @include vendor('display', 'flex');
76
+ @include vendor('align-items', 'center');
77
+ margin: 0 0 _size(element-margin) 0;
78
+
79
+ > * {
80
+ margin-left: 1.5em;
81
+ margin-bottom: 0;
82
+ }
83
+
84
+ > :first-child {
85
+ margin-left: 0;
86
+ }
87
+
88
+ p {
89
+ font-size: 0.7em;
90
+ font-weight: _font(weight-bold);
91
+ letter-spacing: _font(letter-spacing-alt);
92
+ text-transform: uppercase;
93
+ }
94
+ }
95
+ }
96
+
97
+ &.major {
98
+ height: 75vh;
99
+ min-height: 30em;
100
+ max-height: 50em;
101
+
102
+ &.alt {
103
+ opacity: 0.75;
104
+ }
105
+ }
106
+
107
+ &.style1 { &:after { background-color: _palette(accent1); } }
108
+ &.style2 { &:after { background-color: _palette(accent2); } }
109
+ &.style3 { &:after { background-color: _palette(accent3); } }
110
+ &.style4 { &:after { background-color: _palette(accent4); } }
111
+ &.style5 { &:after { background-color: _palette(accent5); } }
112
+ &.style6 { &:after { background-color: _palette(accent6); } }
113
+
114
+ body.is-loading & {
115
+ &:after {
116
+ opacity: 1.0;
117
+ }
118
+
119
+ > .inner {
120
+ @include vendor('filter', 'blur(0.125em)');
121
+ @include vendor('transform', 'translateX(-0.5em)');
122
+ opacity: 0;
123
+ }
124
+ }
125
+
126
+ @include breakpoint(large) {
127
+ background-attachment: scroll;
128
+ }
129
+
130
+ @include breakpoint(small) {
131
+ @include padding(3em, 0, (2em, 0, 0, 0));
132
+ height: auto;
133
+ margin-bottom: -2.75em;
134
+ max-height: none;
135
+ min-height: 0;
136
+ top: -2.75em;
137
+
138
+ h1 {
139
+ font-size: 2em;
140
+ }
141
+
142
+ > .inner {
143
+ .content {
144
+ display: block;
145
+
146
+ > * {
147
+ margin-left: 0;
148
+ margin-bottom: _size(element-margin);
149
+ }
150
+ }
151
+ }
152
+
153
+ &.major {
154
+ height: auto;
155
+ min-height: 0;
156
+ max-height: none;
157
+ }
158
+ }
159
+
160
+ @include breakpoint(xsmall) {
161
+ @include padding(4em, 0, (2em, 0, 0, 0));
162
+
163
+ > .inner {
164
+ .content {
165
+ p {
166
+ br {
167
+ display: none;
168
+ }
169
+ }
170
+ }
171
+ }
172
+
173
+ &.major {
174
+ @include padding(6em, 0, (2em, 0, 0, 0));
175
+ }
176
+ }
177
+ }
@@ -0,0 +1,93 @@
1
+ ///
2
+ /// Forty by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Contact */
8
+
9
+ #contact {
10
+ border-bottom: solid 1px _palette(border);
11
+ overflow-x: hidden;
12
+
13
+ > .inner {
14
+ @include vendor('display', 'flex');
15
+ padding: 0 !important;
16
+
17
+ > :nth-child(2n - 1) {
18
+ @include padding(4em, 0, (0, 3em, 0, 0));
19
+ border-right: solid 1px _palette(border);
20
+ width: 60%;
21
+ }
22
+
23
+ > :nth-child(2n) {
24
+ padding-left: 3em;
25
+ width: 40%;
26
+ }
27
+
28
+ > .split {
29
+ padding: 0;
30
+
31
+ > * {
32
+ @include padding(3em, 0, (0, 0, 0, 3em));
33
+ position: relative;
34
+
35
+ &:before {
36
+ border-top: solid 1px _palette(border);
37
+ content: '';
38
+ display: block;
39
+ margin-left: -3em;
40
+ position: absolute;
41
+ top: 0;
42
+ width: calc(100vw + 3em);
43
+ }
44
+ }
45
+
46
+ > :first-child {
47
+ &:before {
48
+ display: none;
49
+ }
50
+ }
51
+ }
52
+ }
53
+
54
+ @include breakpoint(medium) {
55
+ > .inner {
56
+ display: block;
57
+
58
+ > :nth-child(2n - 1) {
59
+ @include padding(4em, 0, (0, 0, 0, 0));
60
+ border-right: 0;
61
+ width: 100%;
62
+ }
63
+
64
+ > :nth-child(2n) {
65
+ padding-left: 0;
66
+ width: 100%;
67
+ }
68
+
69
+ > .split {
70
+ > * {
71
+ @include padding(3em, 0, (0, 0, 0, 0));
72
+
73
+ &:before {
74
+ }
75
+ }
76
+
77
+ > :first-child {
78
+ &:before {
79
+ display: block;
80
+ }
81
+ }
82
+ }
83
+ }
84
+ }
85
+
86
+ @include breakpoint(small) {
87
+ > .inner {
88
+ > :nth-child(2n - 1) {
89
+ @include padding(3em, 0, (0, 0, 0, 0));
90
+ }
91
+ }
92
+ }
93
+ }
@@ -0,0 +1,42 @@
1
+ ///
2
+ /// Forty by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Footer */
8
+
9
+ #footer {
10
+ .copyright {
11
+ font-size: 0.8em;
12
+ list-style: none;
13
+ padding-left: 0;
14
+
15
+ li {
16
+ border-left: solid 1px _palette(border);
17
+ color: _palette(fg-light);
18
+ display: inline-block;
19
+ line-height: 1;
20
+ margin-left: 1em;
21
+ padding-left: 1em;
22
+
23
+ &:first-child {
24
+ border-left: 0;
25
+ margin-left: 0;
26
+ padding-left: 0;
27
+ }
28
+ }
29
+ }
30
+
31
+ @include breakpoint(xsmall) {
32
+ .copyright {
33
+ li {
34
+ display: block;
35
+ border-left: 0;
36
+ margin-left: 0;
37
+ padding-left: 0;
38
+ line-height: inherit;
39
+ }
40
+ }
41
+ }
42
+ }