linaro-jekyll-theme 0.7.8 → 0.7.9
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/_sass/bootstrap/_variables.scss +1 -0
- data/_sass/core/footer.scss +16 -5
- data/_sass/core/theme.scss +0 -10
- 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: ca78469eaacf6a666a339e8213658e1428fdcb68
|
|
4
|
+
data.tar.gz: a13a4ae359ea57a8646a78271b83c68defca1db8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53e805ea39c1cde889ba82ff371c3160f1a976ffd10c6d28d15c68a5862539bee712ad35c22ddc7ab4371d0918e3e2e8bfc398db8a8ed1f61ac555bb34163bac
|
|
7
|
+
data.tar.gz: b3177a7feb69089dc318a49817cfd75f94c086a170f0d9037eb46967eecb6f43ce3b5b50d64104c5e3dcb67d6614a585cd22f5bb11c4ad409f75693d78f66655
|
|
@@ -31,6 +31,7 @@ $cookie-consent-bg: #000 !default;
|
|
|
31
31
|
$home-page-text: #FFF !default;
|
|
32
32
|
$cookie-consent-btn-bg: $brand-primary !default;
|
|
33
33
|
$footer-bg-color: $gray-darker !default;
|
|
34
|
+
$footer-text-color: #fff !default;
|
|
34
35
|
$sub-footer-color: #E5E5E5 !default;
|
|
35
36
|
$navbar-base-text-color: #ffffff !default;
|
|
36
37
|
|
data/_sass/core/footer.scss
CHANGED
|
@@ -15,13 +15,13 @@ input#mc-embedded-subscribe {
|
|
|
15
15
|
footer {
|
|
16
16
|
background-color: $footer-bg-color;
|
|
17
17
|
height:auto;
|
|
18
|
-
color:
|
|
18
|
+
color: $footer-text-color;
|
|
19
19
|
padding:20px;
|
|
20
20
|
font-size: 16px;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
footer a{
|
|
24
|
-
color: $
|
|
24
|
+
color: $footer-text-color;
|
|
25
25
|
font-size: 14px;
|
|
26
26
|
}
|
|
27
27
|
footer h3 {
|
|
@@ -40,7 +40,7 @@ footer b a {
|
|
|
40
40
|
color: $brand-primary;
|
|
41
41
|
}
|
|
42
42
|
footer b a:hover{
|
|
43
|
-
color:
|
|
43
|
+
color: $brand-primary;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.footer-bottom {
|
|
@@ -59,7 +59,7 @@ div.row.footer-strip > div > div.pull-right > ul {
|
|
|
59
59
|
background-color: $gray-darker;
|
|
60
60
|
}
|
|
61
61
|
div.row.footer-strip > div > div.pull-right > ul a {
|
|
62
|
-
color:
|
|
62
|
+
color: $footer-text-color;
|
|
63
63
|
}
|
|
64
64
|
div.row.footer-strip > div > div.pull-right > ul a:hover{
|
|
65
65
|
color: $brand-primary;
|
|
@@ -70,7 +70,7 @@ div.row.footer-strip > div > div.pull-right > ul a:hover{
|
|
|
70
70
|
.footer-strip .container div {
|
|
71
71
|
height:auto;
|
|
72
72
|
line-height: 50px;
|
|
73
|
-
color:
|
|
73
|
+
color: $footer-text-color;
|
|
74
74
|
}
|
|
75
75
|
.coloured-bp{
|
|
76
76
|
color: $brand-primary;
|
|
@@ -98,3 +98,14 @@ div.row.footer-strip > div > div.pull-right > ul a:hover{
|
|
|
98
98
|
.social-footer-bottom .container{
|
|
99
99
|
padding-left: 0px;
|
|
100
100
|
}
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
a.btn.btn-social-icon {
|
|
105
|
+
color: $footer-text-color;
|
|
106
|
+
transition: color 1s ease;
|
|
107
|
+
}
|
|
108
|
+
a.btn.btn-social-icon:hover {
|
|
109
|
+
color: $brand-primary;
|
|
110
|
+
transition: color 1s ease;
|
|
111
|
+
}
|
data/_sass/core/theme.scss
CHANGED
|
@@ -285,16 +285,6 @@ button#mc-embedded-subscribe:hover {
|
|
|
285
285
|
color: #fff;
|
|
286
286
|
transition: all 1s ease;
|
|
287
287
|
}
|
|
288
|
-
|
|
289
|
-
a.btn.btn-social-icon {
|
|
290
|
-
color: #fff;
|
|
291
|
-
transition: color 1s ease;
|
|
292
|
-
}
|
|
293
|
-
a.btn.btn-social-icon:hover {
|
|
294
|
-
color: $brand-primary;
|
|
295
|
-
transition: color 1s ease;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
288
|
.specification-button{
|
|
299
289
|
background-color: white;
|
|
300
290
|
border: 2px solid #000;
|