jekyll-theme-consulting 0.11.19 → 0.11.23

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: f0c377290b63185b1739d81ec14b6e30b41075bc8297255d53e2922a51a91069
4
- data.tar.gz: e6e1ce665d3b87b65b2a3b03c0a9937ee68e501301608aece4e6c32150f2b850
3
+ metadata.gz: 2d4875ed20edd8594c1b34e526881d87cdde80f468666c761645519b2d005cd7
4
+ data.tar.gz: 9bfb912bcdc40b6c999a6b5b6f79b682df5d38a856feb73943bade5c78add80f
5
5
  SHA512:
6
- metadata.gz: 0a9045accdf205aa0c653ba6a1c326b2e4786185ce6b27c235a41f2e8a4506519687ac9ffa12f4a727ca935947046aa68ca827d963d6a23284e206ab6c479c8a
7
- data.tar.gz: be851517531a4ee0354807909238c6ab12edc2e16c470e2568cf11c51d6f67663193701a883797f39495e33fbe7440518d46087b3a2b6526b2f0cc3afd06d47e
6
+ metadata.gz: 39604a4eb710f89e33760c7a2c433b9a7fcc26ea83937ece3b1536043a199f6ed6ba3c27d0218b453e8725be09f57aca45211960124fbd852d0dd7619f3e96d9
7
+ data.tar.gz: f04d8fb1f5b33346ccec58fa6996d5e8ca62f2fd355920b402ecdf55c5e9ed9c69257c9b8857ff61416361b1b6a939d682973ee52ae3cc445474969b24d78c06
@@ -19,10 +19,10 @@
19
19
  <div class="col-6 col-12-medium col-12-small col-12-xsmall">
20
20
  <ul class="contact">
21
21
  {% if site.name %}<li class="icon solid fa-user"><a href="">{{ site.name }}</a></li>{% endif %}
22
- <li class="icon solid fa-envelope"><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
23
- <li class="icon solid fa-phone"><a href="tel:{{ site.phone }}">{{ site.phone }}</a></li>
24
- <li class="icon solid fa-home">{{ site.street_address }}<br />
25
- {{ site.zip_code }}, {{ site.city }}</li>
22
+ {% if include.show_email and include.show_email==true %}<li class="icon solid fa-envelope"><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>{% endif %}
23
+ {% if include.show_phone and include.show_phone==true %}<li class="icon solid fa-phone"><a href="tel:{{ site.phone }}">{{ site.phone }}</a></li>{% endif %}
24
+ {% if include.show_street_address and include.show_street_address==true %}<li class="icon solid fa-home">{{ site.street_address }}<br />
25
+ {{ site.zip_code }}, {{ site.city }}</li>{% endif %}
26
26
  </ul>
27
27
  </div>
28
28
  </div>
data/_includes/tile.html CHANGED
@@ -3,9 +3,18 @@
3
3
  <a href='{{ include.target_url | absolute_url }}'>
4
4
  {%- endif -%}
5
5
  <div class="tile">
6
- <h3 class="on">{{ include.title }}</h3>
7
- <div class="off">{{ include.content }}</div>
8
- <span class="on icon {{ include.icon }}"></span>
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>
9
18
  </div>
10
19
  {%- if include.target_url -%}
11
20
  </a>
@@ -15,7 +15,7 @@
15
15
  position: relative;
16
16
  margin: 0;
17
17
  padding: 0;
18
- min-height: 20vh;
18
+ min-height: 30vh;
19
19
 
20
20
  .tile {
21
21
  transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s, background-color 0.4s;
@@ -23,7 +23,7 @@
23
23
  position: relative;
24
24
  top: 10%;
25
25
  left: 10%;
26
- padding: 1em;
26
+ padding: 0;
27
27
  width: 80%;
28
28
  height: 80%;
29
29
 
@@ -32,16 +32,20 @@
32
32
  display: block;
33
33
  overflow: hidden;
34
34
 
35
- background-color: rgba(0,55,88,0.75) !important;
35
+ background-color: #336699 !important;
36
36
 
37
- h3, p {
37
+ div.on, div.off {
38
+ position: absolute;
38
39
  width: 100%;
39
- text-align: center;
40
- color: _palette(bg);
40
+ padding: 1em;
41
+ top: 50%;
42
+ transform: translateY(-50%);
41
43
  }
42
44
 
43
- h3, .icon, p, div {
45
+ h3, p, div, .icon {
44
46
  margin: 0 !important;
47
+ width: 100%;
48
+ text-align: center;
45
49
  color: _palette(bg) !important;
46
50
  }
47
51
 
@@ -98,7 +102,7 @@
98
102
 
99
103
  .inverted .tileset .tile-container {
100
104
  .tile {
101
- background-color: rgba(0,100,140,0.3) !important;
105
+ background-color: rgba(0,100,140,0.6) !important;
102
106
 
103
107
  h3, p, icon {
104
108
  color: _palette(bg) !important;
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.19
4
+ version: 0.11.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apehex
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-04 00:00:00.000000000 Z
11
+ date: 2021-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -347,7 +347,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
347
347
  - !ruby/object:Gem::Version
348
348
  version: '0'
349
349
  requirements: []
350
- rubygems_version: 3.2.18
350
+ rubygems_version: 3.2.21
351
351
  signing_key:
352
352
  specification_version: 4
353
353
  summary: A sober, hassle-free, full-featured, Jekyll template for businesses.