jekyll-theme-consulting 0.11.15 → 0.11.21

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87be218b86f214e1808abc8dd4b53ee378b808f6e69237636d6c2a16a1452dc0
4
- data.tar.gz: 42df83a9f8f54cc1db2bf3e423d3455438ce7659903a9de07f7d8f9968e7c167
3
+ metadata.gz: a7f431afa1bcaebbccc1fd0bffd6f0242941410427f097718737af4d7cb5ea5e
4
+ data.tar.gz: 037c37a3b33349521b18d067083d3cee2cf30755c71726141e4eb20bd2f10621
5
5
  SHA512:
6
- metadata.gz: 47514196ba990e54a65f8c822136fc82ddebc7b1b41433a84a0c62cd0f8f89f639b349f83b808f37e741ede058e3f37a32ff08d72c86bbbf51af5a06c66b59fc
7
- data.tar.gz: 9a26d8210d41228654dc523ebc756648cce992f482e6c87733b731a005bea33d86a5d4117018b7d810d8a0740d2956659b51b7988058c5371b4907de8ccd9199
6
+ metadata.gz: a92cbff281e7fa29054679a83ba52a5edc5f9b2c37110ece783a6ff103dfd98734248534ea5450365a1632909b8c46529fd7b2a4a86edfb89dc523eedb1dce02
7
+ data.tar.gz: 2198e6406a04b01e51370248be89e7848bf723e323b1f993995f670ba2b187b512d6180c274ee4ad06c0157a02b86aa97e4e502979c4ffd7f0fdb00162fc821a
data/_includes/fact.html CHANGED
@@ -10,8 +10,8 @@
10
10
  </div>
11
11
  <div class="fact-outro on">
12
12
  <p>{{ include.default.outro | default: &nbsp; }}</p>
13
+ <span class="icon {{ include.default.icon | default: 'fa-play' }} on"></span>
13
14
  </div>
14
- <span class="icon {{ include.default.icon | default: 'fa-play' }} on"></span>
15
15
  <div class="fact-intro off">
16
16
  <p>{{ include.hover.intro | default: &nbsp; }}</p>
17
17
  </div>
@@ -20,8 +20,8 @@
20
20
  </div>
21
21
  <div class="fact-outro off">
22
22
  <p>{{ include.hover.outro | default: &nbsp; }}</p>
23
+ <span class="icon {{ include.hover.icon | default: 'fa-exclamation' }} off"></span>
23
24
  </div>
24
- <span class="icon {{ include.hover.icon | default: 'fa-exclamation' }} off"></span>
25
25
  {%- if include.target_url -%}
26
26
  </a>
27
27
  {%- endif -%}
@@ -0,0 +1,22 @@
1
+ <article class="tile-container {{ include.class }}">
2
+ {%- if include.target_url -%}
3
+ <a href='{{ include.target_url | absolute_url }}'>
4
+ {%- endif -%}
5
+ <div class="tile">
6
+ <div class= "on">
7
+ <h3>{{ include.title }}</h3>
8
+ <span class="icon {{ include.icon }}"></span>
9
+ </div>
10
+ <div class="off">
11
+ {%- if include.content and include.content != blank and include.content != nil and include.content != "" -%}
12
+ {{ include.content }}
13
+ {%- else -%}
14
+ <h3>{{ include.title }}</h3>
15
+ <span class="icon {{ include.icon }}"></span>
16
+ {%- endif -%}
17
+ </div>
18
+ </div>
19
+ {%- if include.target_url -%}
20
+ </a>
21
+ {%- endif -%}
22
+ </article>
data/_sass/large.scss CHANGED
@@ -37,6 +37,7 @@
37
37
  @import 'large/components/mini-posts';
38
38
  @import 'large/components/features';
39
39
  @import 'large/components/facts';
40
+ @import 'large/components/tileset';
40
41
  @import 'large/components/posts';
41
42
 
42
43
  // Layout.
File without changes
@@ -39,6 +39,7 @@ $palette: (
39
39
  bg-alt: #f5f6f7,
40
40
  bg-inverted: #0044dd,
41
41
  bg-alt-inverted: #123456,
42
+ bg-light-inverted: #274c6f,
42
43
  fg: #000000,
43
44
  fg-bold: #000000,
44
45
  fg-light: #9fa3a6,
@@ -51,6 +52,8 @@ $palette: (
51
52
  border-bg-inverted: #ffffff,
52
53
  accent: #0044dd,
53
54
  accent-cp: #ffdd44,
55
+ accent-light: rgba(130,200,255,0.5),
54
56
  accent-inverted: #ffffff,
55
57
  accent-cp-inverted: #6666ff,
58
+ accent-light-inverted: #ffdd88,
56
59
  );
data/_sass/main.scss CHANGED
@@ -31,6 +31,7 @@
31
31
  @import 'main/components/mini-posts';
32
32
  @import 'main/components/features';
33
33
  @import 'main/components/facts';
34
+ @import 'main/components/tileset';
34
35
  @import 'main/components/posts';
35
36
  @import 'main/components/horizontal-tabs';
36
37
  @import 'main/components/vertical-tabs';
@@ -32,10 +32,12 @@
32
32
  }
33
33
 
34
34
  .icon {
35
- position: relative;
35
+ position: absolute;
36
+ bottom:0;
37
+ left: 0;
36
38
  margin: 0;
37
39
  width: 100%;
38
- height: 20%;
40
+ height: 50%;
39
41
  text-align: center;
40
42
  font-size: 3rem;
41
43
  color: _palette(accent) !important;
@@ -44,7 +46,7 @@
44
46
  .fact-intro, .fact-outro {
45
47
  position: relative;
46
48
  width: 100%;
47
- height: 30%;
49
+ height: 35%;
48
50
  margin: 0;
49
51
 
50
52
  p {
@@ -69,7 +71,7 @@
69
71
  .fact {
70
72
  position: relative;
71
73
  width: 100%;
72
- height: 20%;
74
+ height: 30%;
73
75
  margin: 0;
74
76
 
75
77
  h3 {
@@ -0,0 +1,121 @@
1
+ /* Tileset */
2
+
3
+ .tileset {
4
+ $gutter: 0;
5
+
6
+ @include vendor('display', 'flex');
7
+ @include vendor('flex-wrap', 'wrap');
8
+ margin: 0 !important;
9
+ width: 100%;
10
+
11
+ .tile-container {
12
+ @include vendor('flex-grow', '1');
13
+ @include vendor('flex-shrink', '1');
14
+
15
+ position: relative;
16
+ margin: 0;
17
+ padding: 0;
18
+ min-height: 20vh;
19
+
20
+ .tile {
21
+ transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s, background-color 0.4s;
22
+
23
+ position: relative;
24
+ top: 10%;
25
+ left: 10%;
26
+ padding: 0;
27
+ width: 80%;
28
+ height: 80%;
29
+
30
+ border-radius: 0.5rem;
31
+ border: 0;
32
+ display: block;
33
+ overflow: hidden;
34
+
35
+ background-color: #336699 !important;
36
+
37
+ div.on, div.off {
38
+ position: absolute;
39
+ width: 100%;
40
+ padding: 1em;
41
+ top: 50%;
42
+ transform: translateY(-50%);
43
+ }
44
+
45
+ h3, p, div, .icon {
46
+ margin: 0 !important;
47
+ width: 100%;
48
+ text-align: center;
49
+ color: _palette(bg) !important;
50
+ }
51
+
52
+ .on {
53
+ display: block;
54
+ }
55
+
56
+ .off {
57
+ display: none;
58
+ }
59
+
60
+
61
+ .icon {
62
+ z-index: 10;
63
+ width: 100%;
64
+ padding: 0;
65
+ position: relative;
66
+ color: _palette(accent);
67
+ font-size: 3rem;
68
+ text-align: center;
69
+
70
+ &:before{
71
+ width: 100%;
72
+ }
73
+ }
74
+ }
75
+ }
76
+
77
+ .tile-container:hover, .tile-container:active {
78
+ .tile {
79
+ top: 0;
80
+ left: 0;
81
+ width: 100%;
82
+ height: 100%;
83
+
84
+ background-color: _palette(accent) !important;
85
+
86
+ h3, p, .icon {
87
+ color: _palette(accent-cp) !important;
88
+ }
89
+
90
+ .on {
91
+ display: none;
92
+ }
93
+
94
+ .off {
95
+ display: block;
96
+ }
97
+ }
98
+ }
99
+ }
100
+
101
+ /* Inverted */
102
+
103
+ .inverted .tileset .tile-container {
104
+ .tile {
105
+ background-color: rgba(0,100,140,0.6) !important;
106
+
107
+ h3, p, icon {
108
+ color: _palette(bg) !important;
109
+ }
110
+ }
111
+ }
112
+
113
+ .inverted .tileset .tile-container:hover, .inverted .tileset .tile-container:active {
114
+ .tile {
115
+ background-color: _palette(accent) !important;
116
+
117
+ h3, p, icon {
118
+ color: _palette(accent-cp) !important;
119
+ }
120
+ }
121
+ }
data/_sass/medium.scss CHANGED
@@ -36,6 +36,7 @@
36
36
  @import 'medium/components/mini-posts';
37
37
  @import 'medium/components/features';
38
38
  @import 'medium/components/facts';
39
+ @import 'medium/components/tileset';
39
40
  @import 'medium/components/posts';
40
41
 
41
42
  // Layout.
File without changes
data/_sass/small.scss CHANGED
@@ -38,6 +38,7 @@
38
38
  @import 'small/components/mini-posts';
39
39
  @import 'small/components/features';
40
40
  @import 'small/components/facts';
41
+ @import 'small/components/tileset';
41
42
  @import 'small/components/posts';
42
43
 
43
44
  // Layout.
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-consulting
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.15
4
+ version: 0.11.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apehex
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-13 00:00:00.000000000 Z
11
+ date: 2021-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '12.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: webrick
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.7'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.7'
83
97
  description:
84
98
  email:
85
99
  - apehex@protonmail.com
@@ -111,6 +125,7 @@ files:
111
125
  - _includes/social.html
112
126
  - _includes/tabs.html
113
127
  - _includes/thread.html
128
+ - _includes/tile.html
114
129
  - _includes/toggle.html
115
130
  - _includes/waves/bottom.html
116
131
  - _includes/waves/top.html
@@ -149,6 +164,7 @@ files:
149
164
  - _sass/large/components/_row.scss
150
165
  - _sass/large/components/_section.scss
151
166
  - _sass/large/components/_table.scss
167
+ - _sass/large/components/_tileset.scss
152
168
  - _sass/large/layout/_banner.scss
153
169
  - _sass/large/layout/_footer.scss
154
170
  - _sass/large/layout/_header.scss
@@ -186,6 +202,7 @@ files:
186
202
  - _sass/main/components/_row.scss
187
203
  - _sass/main/components/_section.scss
188
204
  - _sass/main/components/_table.scss
205
+ - _sass/main/components/_tileset.scss
189
206
  - _sass/main/components/_vertical-tabs.scss
190
207
  - _sass/main/layout/_banner.scss
191
208
  - _sass/main/layout/_footer.scss
@@ -216,6 +233,7 @@ files:
216
233
  - _sass/medium/components/_row.scss
217
234
  - _sass/medium/components/_section.scss
218
235
  - _sass/medium/components/_table.scss
236
+ - _sass/medium/components/_tileset.scss
219
237
  - _sass/medium/layout/_banner.scss
220
238
  - _sass/medium/layout/_footer.scss
221
239
  - _sass/medium/layout/_header.scss
@@ -245,6 +263,7 @@ files:
245
263
  - _sass/small/components/_row.scss
246
264
  - _sass/small/components/_section.scss
247
265
  - _sass/small/components/_table.scss
266
+ - _sass/small/components/_tileset.scss
248
267
  - _sass/small/layout/_banner.scss
249
268
  - _sass/small/layout/_footer.scss
250
269
  - _sass/small/layout/_header.scss
@@ -328,7 +347,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
328
347
  - !ruby/object:Gem::Version
329
348
  version: '0'
330
349
  requirements: []
331
- rubygems_version: 3.2.13
350
+ rubygems_version: 3.2.18
332
351
  signing_key:
333
352
  specification_version: 4
334
353
  summary: A sober, hassle-free, full-featured, Jekyll template for businesses.