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 +4 -4
- data/_includes/_theme-includes/_footer/footer.html +6 -4
- data/_includes/_theme-includes/_page-structure/home-hero-shape.html +2 -3
- data/_includes/_theme-includes/_page-structure/home-hero.html +2 -2
- data/_sass/bootstrap/_variables.scss +12 -1
- data/_sass/core/homepage.scss +5 -1
- data/_sass/core/theme.scss +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1412ad4cfe430d2fc6fc00e66f00d82ebb020cc7
|
4
|
+
data.tar.gz: 025e06005cebfab32f94424c02f98e4d2bfff41a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
{%
|
42
|
-
|
43
|
-
|
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">
|
15
|
-
|
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
|
-
|
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
|
//
|
data/_sass/core/homepage.scss
CHANGED
data/_sass/core/theme.scss
CHANGED
@@ -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, $
|
216
|
-
background: -webkit-linear-gradient(top, $
|
217
|
-
background: linear-gradient(to bottom, $
|
218
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$
|
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;
|