linaro-jekyll-theme 0.4.9 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/bootstrap/_variables.scss +4 -3
- data/_sass/core/footer.scss +2 -2
- 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: 6de3bdf82e9de2ca07f9328300ec5a10ab2575f0
|
4
|
+
data.tar.gz: 5788ed4cfa81d38c96e20b7aa618f803cbd57c80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9b25ad6942cd2fc4411025893c13ac8e248dee295f3ea73ab9e5c268ea7fa04e2a25cbc881bb73e579b8c35cfd2c0a4833562b5a88197f4ccb584acabaca436
|
7
|
+
data.tar.gz: 6186dc2b33c68e1161fdfd2c73b9c563c26d3605bac9a5b9eb12385fbb9d6beff77d399d547d62d4773e99d9ef7848ce8d0bb4dcc9106b50cc4c6fe1c3ac1340
|
@@ -28,9 +28,10 @@ $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;
|
32
|
-
$cookie-consent-btn-bg:
|
33
|
-
|
31
|
+
$home-page-text: #FFF !default;
|
32
|
+
$cookie-consent-btn-bg: $brand-primary !default;
|
33
|
+
$footer-bg-color: $gray-darker !default;
|
34
|
+
$sub-footer-color: #E5E5E5 !default;
|
34
35
|
|
35
36
|
//== Scaffolding
|
36
37
|
//
|
data/_sass/core/footer.scss
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
.sub-footer {
|
2
|
-
background-color:
|
2
|
+
background-color: $sub-footer-color;
|
3
3
|
padding-top: 40px;
|
4
4
|
padding-bottom:30px;
|
5
5
|
}
|
@@ -13,7 +13,7 @@ input#mc-embedded-subscribe {
|
|
13
13
|
}
|
14
14
|
|
15
15
|
footer {
|
16
|
-
background-color: $
|
16
|
+
background-color: $footer-bg-color;
|
17
17
|
height:auto;
|
18
18
|
color: #FFF;
|
19
19
|
padding:20px;
|
data/_sass/core/theme.scss
CHANGED
@@ -254,3 +254,22 @@ p.sub-tag {
|
|
254
254
|
a.cc-link {
|
255
255
|
color: $cookie-consent-text !important;
|
256
256
|
}
|
257
|
+
|
258
|
+
|
259
|
+
/* ----------- Contact ----------*/
|
260
|
+
#contact-thanks {
|
261
|
+
background-color: $brand-primary;
|
262
|
+
padding-left: 0px;
|
263
|
+
padding-right: 0px;
|
264
|
+
}
|
265
|
+
#contact-thanks div.jumbotron {
|
266
|
+
padding:100px;
|
267
|
+
margin:0;
|
268
|
+
border-radius: 0;
|
269
|
+
color: inherit;
|
270
|
+
background-color: inherit;
|
271
|
+
}
|
272
|
+
|
273
|
+
#contact-thanks h3 {
|
274
|
+
color: #FFF;
|
275
|
+
}
|