linaro-jekyll-theme 0.10.25 → 0.10.26
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/_theme-includes/_page-structure/home-hero-shape.html +18 -7
- data/_sass/core/homepage.scss +5 -0
- data/_sass/core/theme.scss +19 -0
- 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: '038f87aea97f42b24d20bec7c853c6cedc9fe411'
|
4
|
+
data.tar.gz: b6a1c54d03c3975b7f82ca79ad2a180bb6905d23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df319986404545caee2085908c62dce33c7ebf59b4c8db24a060641c7aa9603afddce2a8dcfca4490eb6efde1649afa3d3f7df0f7c30cde0097cdf3c128671d2
|
7
|
+
data.tar.gz: 9dbb162efbd7a3dae1a8ea6bc84d1afe03b6db4df5118052364ffd38d2b695976e3c66de8d0d972ad5cc7ffc8e944735bcdc3b26cd48c364eb0a352ae47e0cde
|
@@ -11,13 +11,24 @@
|
|
11
11
|
class="jumbotron text-center homepage-jumbotron"
|
12
12
|
{% endif %} >
|
13
13
|
<div class="container">
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
14
|
+
{% if site.data.company.home.hero-image %}
|
15
|
+
<div class="col-md-12">
|
16
|
+
<img src="{{site.data.company.home.hero-image}}" id="home-hero-image" class="img-responsive center-block animated fadeIn" alt="{{site.title}} Home Page Image">
|
17
|
+
</div>
|
18
|
+
{% endif %}
|
19
|
+
{% if site.data.company.home.title %}
|
20
|
+
<h2 id="home-page-title" class="fade-in-one text-center" id="homepage-heading">{{site.data.company.home.title}}</h2>
|
21
|
+
{% endif %}
|
22
|
+
{% if site.data.company.home.sub-title %}
|
23
|
+
<h4 id="home-page-text" class="text-center">{{site.data.company.home.sub-title}}</h4>
|
24
|
+
{% endif %}
|
25
|
+
{% if site.data.company.home.buttons %}
|
26
|
+
<p id="buttons">
|
27
|
+
{% for button in site.data.company.buttons %}
|
28
|
+
<a class="{{button.class}}" href="{{button.url}}" role="button">{{button.text}}</a>
|
29
|
+
{% endif %}
|
30
|
+
</p>
|
31
|
+
{% endif %}
|
21
32
|
</div>
|
22
33
|
{% include _theme-includes/_page-structure/shape-divider.html %}
|
23
34
|
</div>
|
data/_sass/core/homepage.scss
CHANGED
data/_sass/core/theme.scss
CHANGED
@@ -340,3 +340,22 @@ button#mc-embedded-subscribe:hover {
|
|
340
340
|
.no-padding {
|
341
341
|
padding: 0;
|
342
342
|
}
|
343
|
+
|
344
|
+
//Spec Button
|
345
|
+
.spec-button {
|
346
|
+
padding: 15px;
|
347
|
+
color: #fff;
|
348
|
+
width: 200px;
|
349
|
+
height: auto;
|
350
|
+
letter-spacing: 2px;
|
351
|
+
background-color: transparent;
|
352
|
+
border-radius:2px;
|
353
|
+
border: 1px solid #fff;
|
354
|
+
transition: all 200ms ease;
|
355
|
+
}
|
356
|
+
.spec-button:hover{
|
357
|
+
background-color: #fff;
|
358
|
+
color: #131313;
|
359
|
+
text-decoration: none;
|
360
|
+
transition: all 500ms ease;
|
361
|
+
}
|