jumbo-jekyll-theme 5.7.0.7 → 6.0.0.4
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/_config.yml +19 -5
- data/_includes/components/cookie_manager.html +8 -16
- data/_includes/components/github_edit.html +2 -2
- data/_includes/components/head.html +2 -5
- data/_includes/components/jumbotron.html +0 -1
- data/_includes/flow/blocks.html +33 -4
- data/_includes/flow/tabbed_content.html +1 -1
- data/_includes/footer/footer.html +9 -56
- data/_sass/app/overrides.scss +2 -80
- data/_sass/core/cookies.scss +3 -0
- data/_sass/core/footer.scss +13 -21
- data/_sass/core/jumbotron.scss +6 -2
- data/assets/css/main.scss +2 -2
- data/assets/js/app/main.js +104 -70
- data/assets/js/vendor/jquery.ihavecookies.js +47 -39
- data/assets/js/vendor/owl.carousel.js +3767 -3335
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7516f5ca2ff820ce48444a6b03fb66fd47c79566d75e7082d7d6d2edf7c97756
|
4
|
+
data.tar.gz: 36cc3fc08ed4a9fd2b5b6d430300f369bbd262cba62fc510582bf84cecd8cef4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92cc1424a2279e40238c32c9a0374188325d41f6b2bee8b53069ec0622d6bb8190ef5eb5304148c8b2e513ca16e5d3c533366462bc96b79b6408bbb26b63612c
|
7
|
+
data.tar.gz: b1db169dbdc0038d25bb5190f909d135eba1c1dc55509f8e3b1bf5983b564507441fd830f0dd2cf7a988227ab473d462981f4b30e79ece9a2cb2d6888906ae42
|
data/_config.yml
CHANGED
@@ -76,11 +76,25 @@ http2_resources:
|
|
76
76
|
href: /assets/fonts/lato/Lato-regular.woff2
|
77
77
|
google_analytics:
|
78
78
|
enabled: true
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
79
|
+
code: GTM-XXXX
|
80
|
+
cookies:
|
81
|
+
necessary:
|
82
|
+
- name: cookieControl
|
83
|
+
description: >
|
84
|
+
This is used to control the display of the preferences pop up. Without this, we wouldn't know if you've clicked Accept!
|
85
|
+
- name: cookieControlPrefs
|
86
|
+
description: >
|
87
|
+
This is used to store your cookie preferences. Without this we wouldn't know which cookies you want!
|
88
|
+
marketing:
|
89
|
+
- name: _ga
|
90
|
+
description: >
|
91
|
+
2 years - Used to distinguish users.
|
92
|
+
- name: _gid
|
93
|
+
description: >
|
94
|
+
24 hours - Used to distinguish users.
|
95
|
+
- name: _gat
|
96
|
+
description: >
|
97
|
+
1 minute - Used to throttle request rate.
|
84
98
|
# Set the site-wide default social media share image.
|
85
99
|
social_media_share_image: /assets/images/social-media-image.png
|
86
100
|
# Set the default favicon
|
@@ -15,14 +15,12 @@
|
|
15
15
|
<th>Usage</th>
|
16
16
|
</thead>
|
17
17
|
<tbody>
|
18
|
+
{% for cookie in site.google_analytics.cookies.necessary %}
|
18
19
|
<tr>
|
19
|
-
<td>
|
20
|
-
<td>
|
21
|
-
</tr>
|
22
|
-
<tr>
|
23
|
-
<td>cookieControlPrefs</td>
|
24
|
-
<td>This is used to store your cookie preferences. Without this we wouldn't know which cookies you want!</td>
|
20
|
+
<td>{{cookie.name}}</td>
|
21
|
+
<td>{{cookie.description | markdownify}}</td>
|
25
22
|
</tr>
|
23
|
+
{% endfor %}
|
26
24
|
</tbody>
|
27
25
|
</table>
|
28
26
|
</div>
|
@@ -52,18 +50,12 @@
|
|
52
50
|
<th>Usage</th>
|
53
51
|
</thead>
|
54
52
|
<tbody>
|
53
|
+
{% for cookie in site.google_analytics.cookies.marketing %}
|
55
54
|
<tr>
|
56
|
-
<td>
|
57
|
-
<td>
|
58
|
-
</tr>
|
59
|
-
<tr>
|
60
|
-
<td>_gid</td>
|
61
|
-
<td>24 hours Used to distinguish users.</td>
|
62
|
-
</tr>
|
63
|
-
<tr>
|
64
|
-
<td>_gat</td>
|
65
|
-
<td>1 minute Used to throttle request rate.</td>
|
55
|
+
<td>{{cookie.name}}</td>
|
56
|
+
<td>{{cookie.description | markdownify}}</td>
|
66
57
|
</tr>
|
58
|
+
{% endfor %}
|
67
59
|
</tbody>
|
68
60
|
</table>
|
69
61
|
</div>
|
@@ -9,7 +9,7 @@
|
|
9
9
|
{{github-home}}/issues/new?title=Problem+with+{{page-path}}&body=Please+enter+some+details+about+the+bug/issue+so+we+can+promptly+resolve+it.+%0D%0AURL%3A++{{site.url}}{{page.url}}
|
10
10
|
{% endcapture %}
|
11
11
|
{% capture edit-me-link %}{{github-docs}}{{page-path}}{% endcapture %}
|
12
|
-
<div class="btn-group my-
|
12
|
+
<div class="btn-group my-2 mt-1" role="group" aria-label="Basic example" id="github_controls">
|
13
13
|
<a type="button" class="btn btn-secondary" href="{{github-home}}" id="github_home"><i class="icon-github-circled center-block"></i></a>
|
14
14
|
<a type="button" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an Issue</a>
|
15
15
|
<a href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary" id="edit_on_github">Edit on GitHub</a>
|
@@ -21,7 +21,7 @@
|
|
21
21
|
{{site.edit-on-github.repo}}/issues/new?title=Problem+with+{{page-path}}&body=Please+enter+some+details+about+the+bug/issue+so+we+can+promptly+resolve+it.+%0D%0AURL%3A++{{site.url}}{{page.url}}
|
22
22
|
{% endcapture %}
|
23
23
|
{% capture edit-me-link %}{{github-docs}}{{page-path}}{% endcapture %}
|
24
|
-
<div class="btn-group my-
|
24
|
+
<div class="btn-group my-2 mt-1" role="group" aria-label="Basic example" id="github_controls">
|
25
25
|
<a type="button" class="btn btn-secondary" href="{{github-home}}" id="github_home"><i
|
26
26
|
class="icon-github-circled center-block"></i></a>
|
27
27
|
<a type="button" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an
|
@@ -31,7 +31,7 @@
|
|
31
31
|
{% endif %}
|
32
32
|
|
33
33
|
<link rel="icon" href="{{site.favicon}}" type="image/png" />
|
34
|
-
<link rel="canonical" href="{{
|
34
|
+
<link rel="canonical" href="{{ page.url | absolute_url }}" />
|
35
35
|
<!-- Meta tags -->
|
36
36
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
37
37
|
<meta name="generator" content="Jekyll v4" />
|
@@ -40,7 +40,7 @@
|
|
40
40
|
<meta property="og:title" content="{{title}}" />
|
41
41
|
<meta property="og:locale" content="en_US" />
|
42
42
|
<meta property="og:description" content="{{description}}" />
|
43
|
-
<meta property="og:url" content="{{
|
43
|
+
<meta property="og:url" content="{{ page.url | absolute_url }}" />
|
44
44
|
<meta property="og:site_name" content="Linaro" />
|
45
45
|
<meta property="og:image" content="{{image}}" />
|
46
46
|
<!--Twitter Cards-->
|
@@ -52,9 +52,6 @@
|
|
52
52
|
{% endif %}
|
53
53
|
{% if site.google_analytics.enabled %}
|
54
54
|
<meta name="analytics_code" content="{{site.google_analytics.code}}">
|
55
|
-
<meta name="cookies_popup_title" content="{{site.google_analytics.cookies_popup_title}}">
|
56
|
-
<meta name="cookies_popup_description" content="{{site.google_analytics.cookies_popup_description}}">
|
57
|
-
<meta name="privacy_url" content="{{site.google_analytics.privacy_url}}">
|
58
55
|
{% endif %}
|
59
56
|
{% if page.keywords %}
|
60
57
|
<meta name="keywords" content="{{page.keywords}}">
|
@@ -44,7 +44,6 @@
|
|
44
44
|
{% if page.jumbotron.image %}
|
45
45
|
{% assign image_path = page.jumbotron.image | remove_first: "/assets/images/" %}
|
46
46
|
{% picture header_image {{image_path}} %}
|
47
|
-
|
48
47
|
{% endif %}
|
49
48
|
{% if page.jumbotron.video %}
|
50
49
|
<video autoplay muted preload="none" poster="{{page.jumbotron.video.poster}}" playsinline loop id="jumbotronVideo">
|
data/_includes/flow/blocks.html
CHANGED
@@ -6,6 +6,28 @@
|
|
6
6
|
{% assign block_width = include.object.item_width %}
|
7
7
|
{% endif %}
|
8
8
|
{% for block in include.object.block_section_content.blocks %}
|
9
|
+
{% if block.modal_content %}
|
10
|
+
<!-- Modal -->
|
11
|
+
<div class="modal fade" id="blockModal-{{forloop.index}}-{{block.title | slugify}}" tabindex="-1" role="dialog" aria-labelledby="blockModalLabel-{{forloop.index}}-{{block.title | slugify}}"
|
12
|
+
aria-hidden="true">
|
13
|
+
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
|
14
|
+
<div class="modal-content">
|
15
|
+
<div class="modal-header">
|
16
|
+
<h5 class="modal-title" id="blockModalLabel-{{forloop.index}}-{{block.title | slugify}}">{{block.title}}</h5>
|
17
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
18
|
+
<span aria-hidden="true">×</span>
|
19
|
+
</button>
|
20
|
+
</div>
|
21
|
+
<div class="modal-body text-left">
|
22
|
+
{{block.modal_content | markdownify}}
|
23
|
+
</div>
|
24
|
+
<div class="modal-footer">
|
25
|
+
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
{% endif %}
|
9
31
|
<div class="col col-12 col-sm-6 col-lg-{{block_width}} block_column">
|
10
32
|
<div class="card h-100 {% if block.background_image %}background_image text-white{% endif %} {% if block.style %}{{block.style}}{% endif %}">
|
11
33
|
{% if block.image %}
|
@@ -25,10 +47,17 @@
|
|
25
47
|
{{block.description | markdownify }}
|
26
48
|
</p>
|
27
49
|
{% endif %}
|
28
|
-
{% if block.
|
29
|
-
|
30
|
-
|
31
|
-
|
50
|
+
{% if block.modal_content %}
|
51
|
+
<!-- Button trigger modal -->
|
52
|
+
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#blockModal-{{forloop.index}}-{{block.title | slugify}}">
|
53
|
+
More Info
|
54
|
+
</button>
|
55
|
+
{% else %}
|
56
|
+
{% if block.buttons %}
|
57
|
+
{% for button in block.buttons %}
|
58
|
+
{% include flow/button.html object=button %}
|
59
|
+
{% endfor %}
|
60
|
+
{% endif %}
|
32
61
|
{% endif %}
|
33
62
|
</div>
|
34
63
|
{% if block.footer_text %}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<div class="col col-12 tabbed_content {% if include.object.style %}{{include.object.style}}{% endif %}">
|
2
2
|
<nav>
|
3
|
-
<div class="nav nav-tabs" id="{{
|
3
|
+
<div class="nav nav-tabs" id="{{page.title | slugify}}{{forloop.index}}" role="tablist">
|
4
4
|
{% for tab in include.object.tabs %}
|
5
5
|
<a class="nav-item nav-link {% if forloop.first %}active{% endif %}" href="#{{tab.title | slugify}}{{forloop.index}}" id="{{tab.title | slugify}}{{forloop.index}}-tab"
|
6
6
|
data-toggle="tab" href="#{{tab.title | slugify}}{{forloop.index}}" role="tab"
|
@@ -1,53 +1,5 @@
|
|
1
1
|
<footer>
|
2
2
|
<div class="container-fluid">
|
3
|
-
<div class="row main">
|
4
|
-
<div class="container">
|
5
|
-
<div class="row">
|
6
|
-
{% if site.data.footer.display_contact_details %}
|
7
|
-
<div class="col col-12 col-lg-4 contact-details">
|
8
|
-
<a class="email" href="mailto:{{site.email}}?subject={{site.url}}">
|
9
|
-
<h3>{{site.email}}</h3>
|
10
|
-
</a>
|
11
|
-
<address>
|
12
|
-
{% for address-line in site.address %}
|
13
|
-
{{address-line}}<br>
|
14
|
-
{% endfor %}
|
15
|
-
</address>
|
16
|
-
<h3>Follow us</h3>
|
17
|
-
{% include_cached social_media_icons.html %}
|
18
|
-
</div>
|
19
|
-
{% endif %}
|
20
|
-
{% if site.data.footer.middle_column %}
|
21
|
-
<div class="col col-12 col-lg-4 footer-column">
|
22
|
-
<h3>{{site.data.footer.middle_column.title}}</h3>
|
23
|
-
<ul class="list-group">
|
24
|
-
{% if site.data.footer.middle_column.latest_posts %}
|
25
|
-
{% include_cached blog/latest_posts.html %}
|
26
|
-
{% else %}
|
27
|
-
{% for item in site.data.footer.middle_column.items %}
|
28
|
-
<li class="list-group-item">
|
29
|
-
<a href="{{item.url}}">{{item.name}}</a>
|
30
|
-
</li>
|
31
|
-
{% endfor %}
|
32
|
-
{% endif %}
|
33
|
-
</ul>
|
34
|
-
</div>
|
35
|
-
{% endif %}
|
36
|
-
{% if site.data.footer.third_column %}
|
37
|
-
<div class="col col-12 col-lg-4 footer-column">
|
38
|
-
<h3>{{site.data.footer.third_column.title}}</h3>
|
39
|
-
<ul class="list-group">
|
40
|
-
{% for item in site.data.footer.third_column.items %}
|
41
|
-
<li class="list-group-item">
|
42
|
-
<a href="{{item.url}}">{{item.name}}</a>
|
43
|
-
</li>
|
44
|
-
{% endfor %}
|
45
|
-
</ul>
|
46
|
-
</div>
|
47
|
-
{% endif %}
|
48
|
-
</div>
|
49
|
-
</div>
|
50
|
-
</div>
|
51
3
|
<div class="row strip p-t-20 p-b-20">
|
52
4
|
<div class="container">
|
53
5
|
<div class="row">
|
@@ -57,18 +9,19 @@
|
|
57
9
|
<div class="col col-12 text-white text-center">
|
58
10
|
<span class="copyright">Copyright © {{ 'now' | date: "%Y" }} {{site.data.footer.copyright_text}}</span>
|
59
11
|
{% for link in site.data.footer.company_links %}
|
60
|
-
|
61
|
-
|
12
|
+
<span class="coloured-bp">•</span>
|
13
|
+
<a href="{{link.url}}">{{link.name}}</a>
|
62
14
|
{% endfor %}
|
15
|
+
{% include_cached social_media_icons.html %}
|
63
16
|
</div>
|
17
|
+
{% if site.data.footer.footer_brand %}
|
64
18
|
<div class="col col-12 text-white text-center m-t-10">
|
65
|
-
{
|
66
|
-
<
|
67
|
-
|
68
|
-
|
69
|
-
</a>
|
70
|
-
{% endif %}
|
19
|
+
<a href="{{site.url}}/">
|
20
|
+
<img src="{{site.data.footer.footer_brand.logo}}" class="footer-logo mx-auto"
|
21
|
+
alt="{{site.name}} Logo" />
|
22
|
+
</a>
|
71
23
|
</div>
|
24
|
+
{% endif %}
|
72
25
|
</div>
|
73
26
|
</div>
|
74
27
|
</div>
|
data/_sass/app/overrides.scss
CHANGED
@@ -16,7 +16,7 @@ $navbar_text_color: #575757;
|
|
16
16
|
$navbar_bg_color: #fff;
|
17
17
|
// Jumbotron
|
18
18
|
$jumbotron_bg_color: lightgray;
|
19
|
-
$jumbotron_height:
|
19
|
+
$jumbotron_height: 350px;
|
20
20
|
// Typography
|
21
21
|
@font-face {
|
22
22
|
font-display: fallback;
|
@@ -34,88 +34,10 @@ $font-family-base: "Lato";
|
|
34
34
|
$footer_bg_color: #00000b;
|
35
35
|
$footer_strip_bg_color: $secondary;
|
36
36
|
// Flow
|
37
|
-
$flow_row_padding:
|
37
|
+
$flow_row_padding: 10px;
|
38
38
|
$flow_component_padding: 15px;
|
39
39
|
// Cookie Consent
|
40
40
|
$cookie_consent_bg: #000;
|
41
41
|
$cookie_consent_text_color: #fff;
|
42
42
|
// Breadcrumb
|
43
43
|
$breadcrumb_bg_color: #e9ecef;
|
44
|
-
|
45
|
-
|
46
|
-
//Home
|
47
|
-
// $home-page-title-text: #000;
|
48
|
-
// $home-page-main-title-color: $primary;
|
49
|
-
// Footer
|
50
|
-
// $footer-bg-color: #131313;
|
51
|
-
// $footer-text-color: #fff;
|
52
|
-
// Sub footer
|
53
|
-
// $sub-footer-bg-color: #ccc;
|
54
|
-
// $footer-border-color: #272727;
|
55
|
-
// $text-color: rgba(0,0,0,.84);
|
56
|
-
// Navbar
|
57
|
-
// $navbar-text-color: #fff !default;
|
58
|
-
// $navbar-hover-text-color: #fff !default;
|
59
|
-
// $navbar-hover-background-color: $primary !default;
|
60
|
-
// $navbar-height: 66px;
|
61
|
-
// $navbar-inverse-bg: #000;
|
62
|
-
// $navbar-inverse-color: #fff;
|
63
|
-
// $navbar-submenu-bg-color: #3e3e3e !default;
|
64
|
-
// $navbar-submenu-color: #fff !default;
|
65
|
-
// $navbar-dropdown-text-color: $navbar-text-color;
|
66
|
-
// Custom Variables
|
67
|
-
// $cookie-consent-text: #FFF !default;
|
68
|
-
// $cookie-consent-bg: #000 !default;
|
69
|
-
// $cookie-consent-btn-bg: $primary !default;
|
70
|
-
// homepage title text and sub text
|
71
|
-
// $home-page-title-text: #FFF !default; // all title text
|
72
|
-
// $home-page-text: #fff !default; // all title text
|
73
|
-
// $home-page-main-title-color: $home-page-title-text !default; // overide for specific main title text
|
74
|
-
|
75
|
-
|
76
|
-
// Footer Colour
|
77
|
-
// $footer-border-color: #eee !default;
|
78
|
-
// $footer-bg-color: #131313 !default;
|
79
|
-
// $footer-text-color: #fff !default;
|
80
|
-
// $sub-footer-color: #E5E5E5 !default;
|
81
|
-
// Breadcrumb
|
82
|
-
// $breadcrumb-background-color: $primary !default;
|
83
|
-
// $breadcrumb-title-color: #fff !default;
|
84
|
-
// $breadcrumb-span-color: #fff !default;
|
85
|
-
//Contact Page
|
86
|
-
// $contact-banner-text-color: #fff !default;
|
87
|
-
// Featured Image Jumbotron
|
88
|
-
// $featured-image-text-color: #fff !default;
|
89
|
-
|
90
|
-
// Nav Bar Overrides
|
91
|
-
// $navbar-text-color: #ffffff !default;
|
92
|
-
// $navbar-dropdown-text-color: #000 !default;
|
93
|
-
// $blog-panel-title-colour: #fff !default;
|
94
|
-
// Custom Jumbotron colours
|
95
|
-
// $jumbotron-top-color: $navbar-inverse-bg !default;
|
96
|
-
// $jumbotron-bottom-color: $primary !default;
|
97
|
-
// Breadcrumb
|
98
|
-
// $breadcrumb-background-color: $primary !default;
|
99
|
-
// $breadcrumb-title-color: #fff !default;
|
100
|
-
// $breadcrumb-span-color: #fff !default;
|
101
|
-
//Contact Page
|
102
|
-
// $contact-banner-text-color: #fff !default;
|
103
|
-
// Jumbotron Settings
|
104
|
-
// $jumbotron-height: 400px;
|
105
|
-
// $overlay: 0.5;
|
106
|
-
// $jumbotron-font-size-xs: 26px;
|
107
|
-
// $jumbotron-font-size: 32px;
|
108
|
-
// $jumbotron-heading-color: #fff !default;
|
109
|
-
// $jumbotron-sub-title-font-size-xs: 16px;
|
110
|
-
// $jumbotron-sub-title-font-size: 18px;
|
111
|
-
// $jumbotron-sub-title-color: #fff !default;
|
112
|
-
// Tabbed Navbar
|
113
|
-
// $tabbed-nav-bg-color: #ccc !default;
|
114
|
-
// $tabbed-nav-text-color: #000 !default;
|
115
|
-
// $tabbed-nav-hover-color: $primary !default;
|
116
|
-
// // Post tags
|
117
|
-
// $post-tag-bg: #d7d7d7 !default;
|
118
|
-
// $post-tag-color: #000 !default;
|
119
|
-
// $post-tag-border: #8b8b8b !default;
|
120
|
-
// $post-tag-hover-bg: #1f1f1f !default;
|
121
|
-
// $post-tag-hover-color: #fff !default;
|
data/_sass/core/cookies.scss
CHANGED
@@ -63,6 +63,7 @@
|
|
63
63
|
padding: 7px;
|
64
64
|
border-radius: 3px;
|
65
65
|
margin-left: 15px;
|
66
|
+
margin-bottom: 5px;
|
66
67
|
cursor: pointer;
|
67
68
|
transition: all 0.3s ease-in;
|
68
69
|
}
|
@@ -192,3 +193,5 @@
|
|
192
193
|
.btn-toggle.active {
|
193
194
|
background-color: $primary;
|
194
195
|
}
|
196
|
+
#gdpr-cookie-message button, #gdpr-cookie-message button#ihavecookiesBtn {
|
197
|
+
}
|
data/_sass/core/footer.scss
CHANGED
@@ -1,28 +1,20 @@
|
|
1
1
|
#wrapper {
|
2
2
|
footer {
|
3
|
+
i {
|
4
|
+
color: white;
|
5
|
+
&:hover {
|
6
|
+
color: $primary;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
a {
|
10
|
+
color: white;
|
11
|
+
&:hover {
|
12
|
+
color: $primary;
|
13
|
+
}
|
14
|
+
}
|
3
15
|
.main {
|
4
16
|
background-color: $footer_bg_color;
|
5
|
-
|
6
|
-
margin: 30px 0;
|
7
|
-
address {
|
8
|
-
text-align: left;
|
9
|
-
font-size: 18px;
|
10
|
-
color: #fff;
|
11
|
-
}
|
12
|
-
h3 {
|
13
|
-
text-align: left;
|
14
|
-
color :$primary;
|
15
|
-
margin-top: 0px;
|
16
|
-
font-size: 24px;
|
17
|
-
font-weight: bold;
|
18
|
-
}
|
19
|
-
i {
|
20
|
-
color: white;
|
21
|
-
&:hover {
|
22
|
-
color: $primary;
|
23
|
-
}
|
24
|
-
}
|
25
|
-
}
|
17
|
+
margin: 30px 0;
|
26
18
|
.footer-column {
|
27
19
|
margin: 30px 0;
|
28
20
|
h3 {
|
data/_sass/core/jumbotron.scss
CHANGED
@@ -15,13 +15,17 @@
|
|
15
15
|
}
|
16
16
|
}
|
17
17
|
h1 {
|
18
|
-
|
19
|
-
|
18
|
+
margin-bottom:5px;
|
19
|
+
@include media-breakpoint-up(lg){
|
20
|
+
font-size: 3rem;
|
20
21
|
font-weight: 300;
|
21
22
|
line-height: 1.2;
|
22
23
|
|
23
24
|
}
|
24
25
|
}
|
26
|
+
p {
|
27
|
+
margin-bottom:5px;
|
28
|
+
}
|
25
29
|
&.video {
|
26
30
|
background-color: transparent;
|
27
31
|
}
|