linaro-jekyll-theme 0.8.7 → 0.8.8

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d8b59bb7d290f2e0662a9450ca43ca15f73a97d3
4
- data.tar.gz: fc7bd75e06a960559f1a0184a177e8eaba6043c0
3
+ metadata.gz: 1412ad4cfe430d2fc6fc00e66f00d82ebb020cc7
4
+ data.tar.gz: 025e06005cebfab32f94424c02f98e4d2bfff41a
5
5
  SHA512:
6
- metadata.gz: 4b2ac846916835d118156046719def516f322cca515bd6aad59ea8d6229ee91fd38256d21beac94fc9efaf4489b8cef41bec08fa196098b9c57ad219e076222d
7
- data.tar.gz: '08f6aa49e1dfc158b26b426afddd6047781eb573cb99f533b0282fb451236307aa988a2f52184a894113e8d5f7b096f30812f4bec2ffcebdd4764d329c51aa12'
6
+ metadata.gz: 7c2952781de72a9a293f2da56a7e64a781fd55b1b1ca6de20a31f75cf5d37146bd524e4732eb506eaec93ca423c198fc55f998fd7947566536f137da41ffc278
7
+ data.tar.gz: 5ecc01daf231a276522a4bd548881734fb69c61a4dabd896a9bd0a596ddb31974049b46fbd25f572860a26007dedc8902167e01c41710e7d779fc18821e4a7f6
@@ -37,10 +37,12 @@
37
37
  {% for column in site.data.footer.columns %}
38
38
  <div class="col-xs-6 col-md-2">
39
39
  <ul class="list-unstyled ">
40
- <li><b><a class="footer-heading" href="{{column.url}}">{{column.title}}</a></b></li>
41
- {% for item in column.items %}
42
- <li><a class="footer-element" href="{{item.url}}">{{item.text}}</a></li>
43
- {% endfor %}
40
+ <li><b><a class="footer-heading" href="{% if column.url %}{{column.url}}{% endif %}">{{column.title}}</a></b></li>
41
+ {% if column.items %}
42
+ {% for item in column.items %}
43
+ <li><a class="footer-element" href="{{item.url}}">{{item.text}}</a></li>
44
+ {% endfor %}
45
+ {% endif %}
44
46
  </ul>
45
47
  </div>
46
48
  {% endfor %}
@@ -11,9 +11,8 @@
11
11
  class="jumbotron text-center homepage-jumbotron"
12
12
  {% endif %} >
13
13
  <div class="container">
14
- <h1 class="fade-in-one" id="homepage-heading">Welcome to the<br />
15
- <b>Linaro Jekyll Theme</b></h1>
16
- <p class="sub-tag center-block fade-in-two">
14
+ <h1 class="home-page-title fade-in-one" id="homepage-heading">{{site.data.company.slogan}}</h1>
15
+ <p class="home-page-text sub-tag center-block fade-in-two">
17
16
  <span>A theme for Linaro Static Jekyll sites.</span><br />
18
17
  <span>Customize this in the _data folder.</span>
19
18
  </p>
@@ -11,9 +11,9 @@
11
11
  class="jumbotron text-center homepage-jumbotron"
12
12
  {% endif %} >
13
13
  <div class="container">
14
- <h1 class="fade-in-one" id="homepage-heading">Welcome to the<br />
14
+ <h1 class="home-page-title fade-in-one" id="homepage-heading">Welcome to the<br />
15
15
  <b>Linaro Jekyll Theme</b></h1>
16
- <p class="sub-tag center-block fade-in-two">
16
+ <p class="home-page-text sub-tag center-block fade-in-two">
17
17
  <span>A theme for Linaro Static Jekyll sites.</span><br />
18
18
  <span>Customize this in the _data folder.</span>
19
19
  </p>
@@ -28,13 +28,20 @@ $brand-danger: rgb(244, 103, 99) !default;
28
28
  // Custom Variables
29
29
  $cookie-consent-text: #FFF !default;
30
30
  $cookie-consent-bg: #000 !default;
31
- $home-page-text: #FFF !default;
31
+
32
+
33
+ // homepage title text and sub text
34
+ $home-page-title-text: #FFF !default; // all title text
35
+ $home-page-main-title-color: $home-page-title-text !default; // overide for specific main title text
36
+
32
37
  $cookie-consent-btn-bg: $brand-primary !default;
33
38
  $footer-bg-color: $gray-darker !default;
34
39
  $footer-text-color: #fff !default;
35
40
  $sub-footer-color: #E5E5E5 !default;
36
41
  $navbar-base-text-color: #ffffff !default;
37
42
 
43
+
44
+
38
45
  //== Scaffolding
39
46
  //
40
47
  //## Settings for some of the most global styles.
@@ -509,6 +516,10 @@ $jumbotron-heading-color: inherit !default;
509
516
  $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
510
517
  $jumbotron-heading-font-size: ceil(($font-size-base * 4.5)) !default;
511
518
 
519
+ // Custom Jumbotron colours
520
+ $jumbotron-top-color: $navbar-inverse-bg !default;
521
+ $jumbotron-bottom-color: $brand-primary-darker !default;
522
+
512
523
 
513
524
  //== Form states and alerts
514
525
  //
@@ -27,5 +27,9 @@
27
27
  }
28
28
 
29
29
  .home-page-text{
30
- color: $home-page-text;
30
+ color: $home-page-title-text;
31
+ }
32
+
33
+ .home-page-title{
34
+ color: $home-page-main-title-color;
31
35
  }
@@ -212,10 +212,10 @@ p.sub-tag {
212
212
  margin-top:0;
213
213
  padding-bottom:0px;
214
214
  background: #FFF; /* Old browsers */
215
- background: -moz-linear-gradient(top, $brand-primary-darker 0%, #000000 100%); /* FF3.6-15 */
216
- background: -webkit-linear-gradient(top, $brand-primary-darker 0%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
217
- background: linear-gradient(to bottom, $brand-primary-darker 0%, #000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
218
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$brand-primary-darker, endColorstr='#000000',GradientType=0 ); /* IE6-9 */
215
+ background: -moz-linear-gradient(top, $jumbotron-top-color 0%, $jumbotron-bottom-color 100%); /* FF3.6-15 */
216
+ background: -webkit-linear-gradient(top, $jumbotron-top-color 0%,$jumbotron-bottom-color 100%); /* Chrome10-25,Safari5.1-6 */
217
+ background: linear-gradient(to bottom, $jumbotron-top-color 0%, $jumbotron-bottom-color 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
218
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$jumbotron-top-color, endColorstr=$jumbotron-bottom-color,GradientType=0 ); /* IE6-9 */
219
219
  }
220
220
  .container .jumbotron, .container-fluid .jumbotron {
221
221
  border-radius: 0px;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linaro-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.7
4
+ version: 0.8.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby