jekyll-theme-consulting 0.11.14 → 0.11.20

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: 1be289c832fcd3af990e857d38dbac8467bfe9840b8e689c3d8d2f3c0d0d8c1c
4
- data.tar.gz: 74fb7796b3dea16e03ebb074344368942df1737ddf0e933d9606c96a09e11279
3
+ metadata.gz: 1406df3751a93bc92021f9e914ca530f3b1a7f5c3c292c38c87eae134fcbfffe
4
+ data.tar.gz: a8b4bf468350e4ac08022cf898b41fd60aa8c18e7a3c5947a4d8b46ab4f886c4
5
5
  SHA512:
6
- metadata.gz: 9ec208eeb71cb109a74a1718643ca9dd6bc69a5681899d23be4792c27d8da6a0c1c7c0eafb0c6995df03fd32b5902187a18e212cb70651cb767727092c80c536
7
- data.tar.gz: e25e682ea9c29c82da773752aca7a11169c95e0ea565f9b20a1883f1a26a873d180c57825022a1fb3930d99e4af7bda18d06628e036fceebb26a85766819d1e3
6
+ metadata.gz: 26daff1285e5598a416fd04de9bebdf5fef935a02d8a796bde95ff4d4acc80a0fccc794b1f3c674b9b3a71cd5953154ddf3ad304bd8e7aa737cac50b203c977e
7
+ data.tar.gz: 9dd32624db9c1549487c9ecae23401ed6bdf2dd5f3e8b16b6048b7facce73ddf292ae64d3f1f723f4544bb6bf6e3b8c3637f981c1cd49d65b08f3bc971291c95
@@ -18,6 +18,7 @@
18
18
  </div>
19
19
  <div class="col-6 col-12-medium col-12-small col-12-xsmall">
20
20
  <ul class="contact">
21
+ {% if site.name %}<li class="icon solid fa-user"><a href="">{{ site.name }}</a></li>{% endif %}
21
22
  <li class="icon solid fa-envelope"><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
22
23
  <li class="icon solid fa-phone"><a href="tel:{{ site.phone }}">{{ site.phone }}</a></li>
23
24
  <li class="icon solid fa-home">{{ site.street_address }}<br />
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: rgba(0,55,88,0.75) !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.3) !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.14
4
+ version: 0.11.20
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-12 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.