jekyll-theme-consulting 0.9.5 → 0.9.10

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: 729cae1d1f51424835a8d83695aa286df78850a82f49877a6af189bbacf3e0f3
4
- data.tar.gz: c1bcd70ea8559f2b1396aa936f114c1199eb31841123a71b6e9c511f8d824b58
3
+ metadata.gz: 932d49ffa22e1d3d7d193480335d1a4454c4019b9c4b6e06a87e821b68e75093
4
+ data.tar.gz: 855a9305e80a249deb69b534496f6266a0f7583a505c388ff1cbe1c5dc8fe72c
5
5
  SHA512:
6
- metadata.gz: f798f91a379bc2574f6ebc5658899f75efc8adb45792eaf11b05e32a938edd4425ad2d31e8b36f8f081d575c2f53a6abce40d9a8fd5cfcb1e5e56e6007e87692
7
- data.tar.gz: 8f3aa7936bccc3a79509af6430dcf81a61dcf1a1a3bd144c74705ffa755697fe03b5474eb0948ece195c328f61f7a56b4d549c4477e435d852d8e05fa4a030fd
6
+ metadata.gz: 20bdc93735275156c2b1039b236863339ffe614478b94801d9a57185e1b1791b826aa063f209030689d7b44fffa39acb45959eeddd8d8e82d6602aaad57df709
7
+ data.tar.gz: cc20b071e41e1d54dde82e786fafee7c89d23f76d8cf7e61a028a0de087579828e79e7f9877255341983835cf2d517ecbaed1cfc5611e456b084e6ed50b6a4b6
@@ -11,7 +11,7 @@
11
11
  <div class="fact-outro on">
12
12
  <p>{{ include.default.outro | default: &nbsp; }}</p>
13
13
  </div>
14
- <span class="icon solid {{ include.default.icon | default: 'fa-play' }} on"></span>
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>
@@ -21,7 +21,7 @@
21
21
  <div class="fact-outro off">
22
22
  <p>{{ include.hover.outro | default: &nbsp; }}</p>
23
23
  </div>
24
- <span class="icon solid {{ include.hover.icon | default: 'fa-exclamation' }} off"></span>
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,9 @@
1
+ <a href='{{ include.target_url | absolute_url }}' class="icon {{ include.class }}">
2
+ <article style="width: 100%;">
3
+ <span class="icon {{ include.icon }}"></span>
4
+ <div class="content">
5
+ <h3>{{ include.title }}</h3>
6
+ <p>{{ include.content }}</p>
7
+ </div>
8
+ </article>
9
+ </a>
@@ -7,9 +7,9 @@
7
7
  <link rel="stylesheet" href="{{ 'assets/css/large.css' | absolute_url }}" media="screen and (min-width: 981px)" />
8
8
  <link rel="stylesheet" href="{{ 'assets/css/medium.css' | absolute_url }}" media="screen and (min-width: 737px) and (max-width:980px)" />
9
9
  <link rel="stylesheet" href="{{ 'assets/css/small.css' | absolute_url }}" media="screen and (max-width:736px)" />
10
- <link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet';this.media='all'">
11
- <link rel="preload" href="{{ 'assets/css/fontawesome-all.min.css' | absolute_url }}" as="style" onload="this.onload=null;this.rel='stylesheet';this.media='all'">
12
- <link rel="preload" href="{{ 'assets/css/cookieconsent.min.css' | absolute_url }}" as="style" onload="this.onload=null;this.rel='stylesheet';this.media='all'">
10
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700&display=swap" type="text/css" media="all">
11
+ <link rel="stylesheet" href="{{ 'assets/css/fontawesome-all.min.css' | absolute_url }}" type="text/css" media="all">
12
+ <link rel="stylesheet" href="{{ 'assets/css/cookieconsent.min.css' | absolute_url }}" type="text/css" media="all">
13
13
  {%- if include.stylesheets -%}
14
14
  {%- for file in include.stylesheets -%}
15
15
  <link rel="stylesheet" href="{{ file.url | absolute_url }}" />
@@ -11,7 +11,7 @@
11
11
  <label for="option-{{ tab-id }}" style="width: {{ include.header-width | default: 30 }}%;">{{ tab.title }}</label>
12
12
  <section class="tab-panel" style="left: {{ include.header-width | default: 30 }}%;">
13
13
  {% if show-title == true %}<h2>{{ tab.title }}</h2>{% endif %}
14
- <p>{{ tab.content }}</p>
14
+ {{ tab.content }}
15
15
  </section>
16
16
  </div>
17
17
  {%- endfor -%}
@@ -4,7 +4,7 @@
4
4
 
5
5
  /// Breakpoints.
6
6
  /// @var {list}
7
- $breakpoints: () !global;
7
+ $breakpoints: null;
8
8
 
9
9
  // Mixins.
10
10
 
@@ -55,7 +55,7 @@
55
55
  }
56
56
 
57
57
  .horizontal-tabset .tab-panels .tab-panel {
58
- padding: 30px 0;
58
+ padding: 30px 0 !important;
59
59
  border-top: 2px solid _palette(accent);
60
60
  }
61
61
 
@@ -62,7 +62,7 @@
62
62
  position: absolute;
63
63
  top: 0;
64
64
  left: 40%;
65
- padding: 0 30px;
65
+ padding: 0 30px !important;
66
66
  margin: 0 0 0 -2px;
67
67
  border-left: 2px solid _palette(accent);
68
68
  height: 100%;
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.9.5
4
+ version: 0.9.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moodule
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-30 00:00:00.000000000 Z
11
+ date: 2020-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -81,6 +81,7 @@ files:
81
81
  - _includes/contact_script.html
82
82
  - _includes/date.html
83
83
  - _includes/fact.html
84
+ - _includes/feature.html
84
85
  - _includes/footer.html
85
86
  - _includes/head.html
86
87
  - _includes/header.html