jekyll-theme-consulting 0.1.17 → 0.2.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.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/head.html +0 -3
  3. data/_sass/base/_page.scss +13 -4
  4. data/_sass/base/_reset.scss +76 -0
  5. data/_sass/base/_typography.scss +7 -8
  6. data/_sass/components/_actions.scss +63 -0
  7. data/_sass/components/_button.scss +2 -4
  8. data/_sass/components/_contact.scss +47 -0
  9. data/_sass/components/_features.scss +3 -3
  10. data/_sass/components/_form.scss +24 -27
  11. data/_sass/components/_icon.scss +16 -0
  12. data/_sass/components/_icons.scss +30 -0
  13. data/_sass/components/_list.scss +0 -199
  14. data/_sass/components/_pagination.scss +70 -0
  15. data/_sass/components/_posts.scss +3 -58
  16. data/_sass/components/_row.scss +31 -0
  17. data/_sass/layout/_banner.scss +1 -1
  18. data/_sass/layout/_header.scss +3 -3
  19. data/_sass/layout/_main.scss +3 -3
  20. data/_sass/layout/_menu.scss +1 -1
  21. data/_sass/layout/_sidebar.scss +8 -8
  22. data/_sass/libs/_breakpoints.scss +223 -0
  23. data/_sass/libs/_functions.scss +56 -0
  24. data/_sass/libs/_html-grid.scss +149 -0
  25. data/_sass/libs/_mixins.scss +26 -4
  26. data/_sass/libs/_vendor.scss +376 -0
  27. data/_sass/main.scss +18 -16
  28. data/assets/css/fontawesome-all.min.css +5 -0
  29. data/assets/webfonts/fa-brands-400.eot +0 -0
  30. data/assets/webfonts/fa-brands-400.svg +3442 -0
  31. data/assets/webfonts/fa-brands-400.ttf +0 -0
  32. data/assets/webfonts/fa-brands-400.woff +0 -0
  33. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  34. data/assets/webfonts/fa-regular-400.eot +0 -0
  35. data/assets/webfonts/fa-regular-400.svg +803 -0
  36. data/assets/webfonts/fa-regular-400.ttf +0 -0
  37. data/assets/webfonts/fa-regular-400.woff +0 -0
  38. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  39. data/assets/webfonts/fa-solid-900.eot +0 -0
  40. data/assets/webfonts/fa-solid-900.svg +4649 -0
  41. data/assets/webfonts/fa-solid-900.ttf +0 -0
  42. data/assets/webfonts/fa-solid-900.woff +0 -0
  43. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  44. metadata +27 -14
  45. data/_sass/ie8.scss +0 -28
  46. data/_sass/ie9.scss +0 -84
  47. data/_sass/libs/_skel.scss +0 -585
  48. data/assets/css/font-awesome.min.css +0 -4
  49. data/assets/css/ie8.scss +0 -5
  50. data/assets/css/ie9.scss +0 -5
  51. data/assets/fonts/FontAwesome.otf +0 -0
  52. data/assets/fonts/fontawesome-webfont.eot +0 -0
  53. data/assets/fonts/fontawesome-webfont.svg +0 -685
  54. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  55. data/assets/fonts/fontawesome-webfont.woff +0 -0
  56. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
@@ -0,0 +1,30 @@
1
+ ///
2
+ /// Editorial 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
+ /* Icons */
8
+
9
+ ul.icons {
10
+ cursor: default;
11
+ list-style: none;
12
+ padding-left: 0;
13
+
14
+ li {
15
+ display: inline-block;
16
+ padding: 0 1em 0 0;
17
+
18
+ &:last-child {
19
+ padding-right: 0;
20
+ }
21
+
22
+ .icon {
23
+ color: inherit;
24
+
25
+ &:before {
26
+ font-size: 1.25em;
27
+ }
28
+ }
29
+ }
30
+ }
@@ -39,205 +39,6 @@
39
39
  }
40
40
  }
41
41
  }
42
-
43
- &.icons {
44
- cursor: default;
45
- list-style: none;
46
- padding-left: 0;
47
-
48
- li {
49
- display: inline-block;
50
- padding: 0 1em 0 0;
51
-
52
- &:last-child {
53
- padding-right: 0;
54
- }
55
-
56
- .icon {
57
- color: inherit;
58
-
59
- &:before {
60
- font-size: 1.25em;
61
- }
62
- }
63
- }
64
- }
65
-
66
- &.contact {
67
- list-style: none;
68
- padding: 0;
69
-
70
- li {
71
- @include icon;
72
- border-top: solid 1px _palette(border);
73
- margin: 1.5em 0 0 0;
74
- padding: 1.5em 0 0 3em;
75
- position: relative;
76
-
77
- &:before {
78
- color: _palette(accent);
79
- display: inline-block;
80
- font-size: 1.5em;
81
- height: 1.125em;
82
- left: 0;
83
- line-height: 1.125em;
84
- position: absolute;
85
- text-align: center;
86
- top: (1.5em / 1.5);
87
- width: 1.5em;
88
- }
89
-
90
- &:first-child {
91
- border-top: 0;
92
- margin-top: 0;
93
- padding-top: 0;
94
-
95
- &:before {
96
- top: 0;
97
- }
98
- }
99
-
100
- a {
101
- color: inherit;
102
- }
103
- }
104
- }
105
-
106
- &.actions {
107
- cursor: default;
108
- list-style: none;
109
- padding-left: 0;
110
-
111
- li {
112
- display: inline-block;
113
- padding: 0 (_size(element-margin) * 0.5) 0 0;
114
- vertical-align: middle;
115
-
116
- &:last-child {
117
- padding-right: 0;
118
- }
119
- }
120
-
121
- &.small {
122
- li {
123
- padding: 0 (_size(element-margin) * 0.25) 0 0;
124
- }
125
- }
126
-
127
- &.vertical {
128
- li {
129
- display: block;
130
- padding: (_size(element-margin) * 0.5) 0 0 0;
131
-
132
- &:first-child {
133
- padding-top: 0;
134
- }
135
-
136
- > * {
137
- margin-bottom: 0;
138
- }
139
- }
140
-
141
- &.small {
142
- li {
143
- padding: (_size(element-margin) * 0.25) 0 0 0;
144
-
145
- &:first-child {
146
- padding-top: 0;
147
- }
148
- }
149
- }
150
- }
151
-
152
- &.fit {
153
- display: table;
154
- margin-left: (_size(element-margin) * -0.5);
155
- padding: 0;
156
- table-layout: fixed;
157
- width: calc(100% + #{(_size(element-margin) * 0.5)});
158
-
159
- li {
160
- display: table-cell;
161
- padding: 0 0 0 (_size(element-margin) * 0.5);
162
-
163
- > * {
164
- margin-bottom: 0;
165
- }
166
- }
167
-
168
- &.small {
169
- margin-left: (_size(element-margin) * -0.25);
170
- width: calc(100% + #{(_size(element-margin) * 0.25)});
171
-
172
- li {
173
- padding: 0 0 0 (_size(element-margin) * 0.25);
174
- }
175
- }
176
- }
177
- }
178
-
179
- &.pagination {
180
- cursor: default;
181
- list-style: none;
182
- padding-left: 0;
183
-
184
- li {
185
- display: inline-block;
186
- padding-left: 0;
187
- vertical-align: middle;
188
-
189
- > .page {
190
- @include vendor('transition', (
191
- 'background-color #{_duration(transition)} ease-in-out',
192
- 'color #{_duration(transition)} ease-in-out'
193
- ));
194
- border-bottom: 0;
195
- border-radius: _size(border-radius);
196
- display: inline-block;
197
- font-size: 0.8em;
198
- font-weight: _font(weight-bold);
199
- height: 2em;
200
- line-height: 2em;
201
- margin: 0 0.125em;
202
- min-width: 2em;
203
- padding: 0 0.5em;
204
- text-align: center;
205
-
206
- &.active {
207
- background-color: _palette(accent);
208
- color: _palette(bg) !important;
209
-
210
- &:hover {
211
- background-color: lighten(_palette(accent), 3);
212
- }
213
-
214
- &:active {
215
- background-color: darken(_palette(accent), 3);
216
- }
217
- }
218
- }
219
-
220
- &:first-child {
221
- padding-right: 0.75em;
222
- }
223
-
224
- &:last-child {
225
- padding-left: 0.75em;
226
- }
227
- }
228
-
229
- @include breakpoint(xsmall) {
230
- li {
231
- &:nth-child(n+2):nth-last-child(n+2) {
232
- display: none;
233
- }
234
-
235
- &:first-child {
236
- padding-right: 0;
237
- }
238
- }
239
- }
240
- }
241
42
  }
242
43
 
243
44
  dl {
@@ -0,0 +1,70 @@
1
+ ///
2
+ /// Editorial 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
+ /* Pagination */
8
+
9
+ ul.pagination {
10
+ cursor: default;
11
+ list-style: none;
12
+ padding-left: 0;
13
+
14
+ li {
15
+ display: inline-block;
16
+ padding-left: 0;
17
+ vertical-align: middle;
18
+
19
+ > .page {
20
+ @include vendor('transition', (
21
+ 'background-color #{_duration(transition)} ease-in-out',
22
+ 'color #{_duration(transition)} ease-in-out'
23
+ ));
24
+ border-bottom: 0;
25
+ border-radius: _size(border-radius);
26
+ display: inline-block;
27
+ font-size: 0.8em;
28
+ font-weight: _font(weight-bold);
29
+ height: 2em;
30
+ line-height: 2em;
31
+ margin: 0 0.125em;
32
+ min-width: 2em;
33
+ padding: 0 0.5em;
34
+ text-align: center;
35
+
36
+ &.active {
37
+ background-color: _palette(accent);
38
+ color: _palette(bg) !important;
39
+
40
+ &:hover {
41
+ background-color: lighten(_palette(accent), 3);
42
+ }
43
+
44
+ &:active {
45
+ background-color: darken(_palette(accent), 3);
46
+ }
47
+ }
48
+ }
49
+
50
+ &:first-child {
51
+ padding-right: 0.75em;
52
+ }
53
+
54
+ &:last-child {
55
+ padding-left: 0.75em;
56
+ }
57
+ }
58
+
59
+ @include breakpoint('<=xsmall') {
60
+ li {
61
+ &:nth-child(n+2):nth-last-child(n+2) {
62
+ display: none;
63
+ }
64
+
65
+ &:first-child {
66
+ padding-right: 0;
67
+ }
68
+ }
69
+ }
70
+ }
@@ -58,35 +58,7 @@
58
58
  }
59
59
  }
60
60
 
61
- @include breakpoint(xlarge-to-max) {
62
- article {
63
- &:nth-child(3n + 1) {
64
- &:before {
65
- display: none;
66
- }
67
-
68
- &:after {
69
- width: 100%;
70
- }
71
- }
72
-
73
- &:nth-last-child(1),
74
- &:nth-last-child(2),
75
- &:nth-last-child(3) {
76
- margin-bottom: 0;
77
-
78
- &:before {
79
- height: 100%;
80
- }
81
-
82
- &:after {
83
- display: none;
84
- }
85
- }
86
- }
87
- }
88
-
89
- @include breakpoint(xlarge) {
61
+ @include breakpoint('<=xlarge') {
90
62
  article {
91
63
  width: calc(50% - #{$gutter});
92
64
 
@@ -96,34 +68,7 @@
96
68
  }
97
69
  }
98
70
 
99
- @include breakpoint(small-to-xlarge) {
100
- article {
101
- &:nth-child(2n + 1) {
102
- &:before {
103
- display: none;
104
- }
105
-
106
- &:after {
107
- width: 100%;
108
- }
109
- }
110
-
111
- &:nth-last-child(1),
112
- &:nth-last-child(2) {
113
- margin-bottom: 0;
114
-
115
- &:before {
116
- height: 100%;
117
- }
118
-
119
- &:after {
120
- display: none;
121
- }
122
- }
123
- }
124
- }
125
-
126
- @include breakpoint(small) {
71
+ @include breakpoint('<=small') {
127
72
  $gutter: _size(gutter) * 1.5;
128
73
 
129
74
  margin: 0 0 _size(element-margin) ($gutter * -1);
@@ -149,7 +94,7 @@
149
94
  }
150
95
  }
151
96
 
152
- @include breakpoint(xsmall) {
97
+ @include breakpoint('<=xsmall') {
153
98
  $gutter: _size(gutter) * 1.5;
154
99
 
155
100
  margin: 0 0 _size(element-margin) 0;
@@ -0,0 +1,31 @@
1
+ ///
2
+ /// Editorial 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
+ /* Row */
8
+
9
+ .row {
10
+ @include html-grid(1.5em);
11
+
12
+ @include breakpoint('<=xlarge') {
13
+ @include html-grid(1.5em, 'xlarge');
14
+ }
15
+
16
+ @include breakpoint('<=large') {
17
+ @include html-grid(1.5em, 'large');
18
+ }
19
+
20
+ @include breakpoint('<=medium') {
21
+ @include html-grid(1.5em, 'medium');
22
+ }
23
+
24
+ @include breakpoint('<=small') {
25
+ @include html-grid(1.5em, 'small');
26
+ }
27
+
28
+ @include breakpoint('<=xsmall') {
29
+ @include html-grid(1.5em, 'xsmall');
30
+ }
31
+ }
@@ -66,7 +66,7 @@
66
66
  width: 100%;
67
67
  }
68
68
 
69
- @include breakpoint(xsmall) {
69
+ @include breakpoint('<=xsmall') {
70
70
  .image {
71
71
  max-height: 35vh;
72
72
  }
@@ -9,7 +9,7 @@
9
9
  #header {
10
10
  @include vendor('display', 'flex');
11
11
  border-bottom: solid 5px _palette(accent);
12
- padding: 2.6em 0 1em 0;
12
+ padding: 2em 0 1em 0;
13
13
  position: relative;
14
14
 
15
15
  > * {
@@ -39,11 +39,11 @@
39
39
  }
40
40
  }
41
41
 
42
- @include breakpoint(xlarge) {
42
+ @include breakpoint('<=xlarge') {
43
43
 
44
44
  }
45
45
 
46
- @include breakpoint(small) {
46
+ @include breakpoint('<=small') {
47
47
  .logo {
48
48
  font-size: 1.25em;
49
49
  margin: 0;