betterplace-content 0.7.84 → 0.7.89
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/_layouts/default.html +18 -0
- data/_layouts/error404.html +1 -1
- data/_sass/about-us/feature.sass +6 -6
- data/_sass/about-us/generic_content_header.sass +1 -1
- data/_sass/about-us/history.sass +1 -1
- data/_sass/about-us/scroll-down.sass +4 -4
- data/_sass/about-us/team.sass +2 -2
- data/_sass/about-us/why.sass +1 -0
- data/_sass/generics/hero_search.sass +1 -1
- data/_sass/generics/team_list.scss +1 -1
- data/_sass/generics/team_list_interlaced.scss +1 -1
- data/_sass/initialize/colors.sass +16 -19
- data/_sass/lpm/_background_colors.sass +12 -21
- data/_sass/lpm/_hero_element.sass +1 -1
- data/_sass/lpm/_list.sass +1 -1
- data/_sass/lpm/_seperator.sass +1 -1
- data/_sass/lpm/_variables.sass +0 -15
- data/_sass/pages/freundeskreis.sass +4 -4
- data/_sass/pages/help.sass +2 -2
- data/_sass/pages/news.sass +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d89bdb892cf8750046c4dc818e2393d1a8ca8b5673e1b0c7eca4575a2dee2ee
|
|
4
|
+
data.tar.gz: c8ecf4eade2f89cd40f0913d057bbe60c9e6e457a0725d04a6d2b0ff690011b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5362c6e28a671c5bc7212583fc66786dd7fdc262ef3fae6fb9804b7f26e49df7bd85f65ce991fe7c5a154979019e2ad174ece87a473e511d9de302dd1e5e9aa5
|
|
7
|
+
data.tar.gz: 5ab3ad2cc5092866543b2453911c954ed32b92af1947b93b358bd088c757e2f29e5aa09e72170913d8c185ac85f122c3250da5314ca9af40d846c3845c01d8e1
|
data/_layouts/default.html
CHANGED
|
@@ -113,6 +113,24 @@ Update 2019-07-19: Another problem that came us is, that URLs endet in .html whi
|
|
|
113
113
|
<script src="{{ style_host }}/de/layouts/current_pack/utils"></script>
|
|
114
114
|
<script src="{{ style_host }}/de/layouts/current_pack/locale_{{ site.lang }}"></script>
|
|
115
115
|
<script src="{{ style_host }}/de/layouts/current_pack/homepage"></script>
|
|
116
|
+
<script>
|
|
117
|
+
// Make sure we can test the Rails-staging CSS on jekyll-staging.
|
|
118
|
+
{% comment -%}
|
|
119
|
+
// For Staging: Simulate the environment by replacing the URLs.
|
|
120
|
+
// For Development: This does nothing, unless you force `JEKYLL_ENV=production`.
|
|
121
|
+
// This will also replace URLs like the navbar logo URL which is a nice extra.
|
|
122
|
+
// The attribute data-host-replaced=true is meant as a heads up when using the inspector that something was change here.
|
|
123
|
+
// We cannot use the same logic for JS – more at https://github.com/betterplace/content--theme/commit/cff6293.
|
|
124
|
+
{% endcomment -%}
|
|
125
|
+
if (window.location.hostname !== 'www.betterplace.org') {
|
|
126
|
+
document.querySelectorAll("[href]").forEach(element => {
|
|
127
|
+
if (element.href.includes('www.betterplace.org')) {
|
|
128
|
+
element.href = element.href.replace('www.betterplace.org', window.location.hostname)
|
|
129
|
+
element.setAttribute('data-host-replaced', 'true')
|
|
130
|
+
}
|
|
131
|
+
})
|
|
132
|
+
}
|
|
133
|
+
</script>
|
|
116
134
|
|
|
117
135
|
</body>
|
|
118
136
|
</html>
|
data/_layouts/error404.html
CHANGED
|
@@ -3,7 +3,7 @@ layout: default
|
|
|
3
3
|
head_include: <meta content="noindex" name="robots" />
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<div class="content-wrapper
|
|
6
|
+
<div class="content-wrapper bg-teal-500 preserves-space-for-transparent-header-with-subnavi">
|
|
7
7
|
<div class="container">
|
|
8
8
|
<div class="row">
|
|
9
9
|
<div class="col-md-24 text-center">
|
data/_sass/about-us/feature.sass
CHANGED
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
display: block
|
|
21
21
|
font-weight: 400
|
|
22
22
|
color: black
|
|
23
|
-
background: $
|
|
23
|
+
background: $gray-200
|
|
24
24
|
|
|
25
25
|
+desktop
|
|
26
26
|
font-size: 20px
|
|
27
27
|
line-height: 66px
|
|
28
|
-
border-left: 66px solid $
|
|
28
|
+
border-left: 66px solid $green-500
|
|
29
29
|
box-shadow: inset 1px 0 0px 0px #FFF
|
|
30
30
|
-webkit-box-shadow: inset 1px 0 0px 0px #FFF
|
|
31
31
|
height: 66px
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
&:hover,
|
|
43
43
|
&:focus
|
|
44
44
|
text-decoration: none
|
|
45
|
-
background: darken($
|
|
46
|
-
border-left-color: darken($
|
|
45
|
+
background: darken($gray-200, 2%)
|
|
46
|
+
border-left-color: darken($green-500, 2%)
|
|
47
47
|
|
|
48
48
|
i
|
|
49
49
|
position: absolute
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
|
|
58
58
|
+phone
|
|
59
59
|
left: 20px
|
|
60
|
-
color: $
|
|
60
|
+
color: $green-500 !important
|
|
61
61
|
|
|
62
62
|
.btn + br
|
|
63
63
|
+desktop
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
&:before
|
|
111
111
|
content: ''
|
|
112
112
|
position: absolute
|
|
113
|
-
border-bottom: 1px solid $
|
|
113
|
+
border-bottom: 1px solid $gray-200
|
|
114
114
|
height: 1px
|
|
115
115
|
|
|
116
116
|
+desktop
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
+desktop
|
|
6
6
|
padding-top: 41px
|
|
7
7
|
height: 560px
|
|
8
|
-
background: url('#{$site_baseurl}/assets/theme_images/about-us/generic-content-header_desktop.jpg') no-repeat 50% 0 $
|
|
8
|
+
background: url('#{$site_baseurl}/assets/theme_images/about-us/generic-content-header_desktop.jpg') no-repeat 50% 0 $gray-200
|
|
9
9
|
background-size: cover
|
|
10
10
|
|
|
11
11
|
+phone
|
data/_sass/about-us/history.sass
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
color: #ffffff
|
|
4
4
|
|
|
5
5
|
+desktop
|
|
6
|
-
background: url('#{$site_baseurl}/assets/theme_images/about-us/history-banner-desktop.jpg') no-repeat 50% 0 $
|
|
6
|
+
background: url('#{$site_baseurl}/assets/theme_images/about-us/history-banner-desktop.jpg') no-repeat 50% 0 $gray-200
|
|
7
7
|
height: 560px
|
|
8
8
|
|
|
9
9
|
+phone
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
background: rgba(255, 255, 255, 0.1)
|
|
32
32
|
|
|
33
33
|
&.dark-style
|
|
34
|
-
border-color: $
|
|
34
|
+
border-color: $gray-300
|
|
35
35
|
|
|
36
36
|
&:before
|
|
37
|
-
border-top-color: $
|
|
37
|
+
border-top-color: $gray-300
|
|
38
38
|
|
|
39
39
|
&:hover
|
|
40
40
|
background: inherit
|
|
41
|
-
border-color: darken($
|
|
41
|
+
border-color: darken($gray-300, 5%)
|
|
42
42
|
|
|
43
43
|
&:before
|
|
44
|
-
border-top-color: darken($
|
|
44
|
+
border-top-color: darken($gray-300, 5%)
|
|
45
45
|
|
|
46
46
|
+phone
|
|
47
47
|
display: none
|
data/_sass/about-us/team.sass
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
color: white
|
|
4
4
|
|
|
5
5
|
+desktop
|
|
6
|
-
background: url('#{$site_baseurl}/assets/theme_images/about-us/team-teaser-desktop.jpg') no-repeat 50% 0 $
|
|
6
|
+
background: url('#{$site_baseurl}/assets/theme_images/about-us/team-teaser-desktop.jpg') no-repeat 50% 0 $gray-200
|
|
7
7
|
height: 560px
|
|
8
8
|
|
|
9
9
|
+phone
|
|
10
|
-
background: url('#{$site_baseurl}/assets/theme_images/about-us/team-teaser-phone.jpg') no-repeat 40% center $
|
|
10
|
+
background: url('#{$site_baseurl}/assets/theme_images/about-us/team-teaser-phone.jpg') no-repeat 40% center $gray-200
|
|
11
11
|
height: 380px
|
|
12
12
|
background-size: cover
|
|
13
13
|
|
data/_sass/about-us/why.sass
CHANGED
|
@@ -1,26 +1,23 @@
|
|
|
1
|
-
// Farben aus ORG
|
|
1
|
+
// Farben aus ORG tailwind.config.js
|
|
2
2
|
|
|
3
|
-
$
|
|
4
|
-
$
|
|
5
|
-
$
|
|
3
|
+
$gray-200: #eeeeee
|
|
4
|
+
$gray-300: #cccccc
|
|
5
|
+
$gray-500: #919191
|
|
6
|
+
$gray-700: #636363
|
|
7
|
+
$gray-800: #3f3f3f
|
|
6
8
|
|
|
7
|
-
$
|
|
8
|
-
$
|
|
9
|
-
$
|
|
10
|
-
$
|
|
9
|
+
$green-100: #f5fccc
|
|
10
|
+
$green-300: #d6ef66
|
|
11
|
+
$green-500: #9ecb09
|
|
12
|
+
$green-500: #9ecb0a
|
|
11
13
|
|
|
12
|
-
$
|
|
13
|
-
$dangerous-red: #cd0920
|
|
14
|
+
$purple-600: #6d2c64
|
|
14
15
|
|
|
15
|
-
$
|
|
16
|
-
$medium-blue: #4597A2
|
|
17
|
-
$dark-blue: #28638c
|
|
16
|
+
$red-500: #ff6f6c
|
|
18
17
|
|
|
19
|
-
$
|
|
18
|
+
$teal-500: #4597a2
|
|
19
|
+
$teal-500: #4597a2
|
|
20
20
|
|
|
21
|
-
$
|
|
22
|
-
$brand-color-twitter: #1da1f2
|
|
21
|
+
$yellow-400: #f6ce46
|
|
23
22
|
|
|
24
|
-
$
|
|
25
|
-
$footer-color-2: #2d7d4f
|
|
26
|
-
$footer-color-3: #34675a
|
|
23
|
+
$legacy-gray-blue-200: #aecfd1
|
|
@@ -1,31 +1,22 @@
|
|
|
1
1
|
@mixin generate-backgrounds($color, $selector)
|
|
2
2
|
|
|
3
|
-
.bg
|
|
3
|
+
.bg-#{$selector}
|
|
4
4
|
background-color: $color
|
|
5
5
|
|
|
6
6
|
.lpm-#{$selector}-stripe
|
|
7
7
|
background-image: linear-gradient(white 0%, white 120px, $color 120px, $color 100%)
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
+generate-backgrounds($red-500, red-500)
|
|
10
|
+
+generate-backgrounds($green-500, green-500)
|
|
11
|
+
+generate-backgrounds($red-500, red-500)
|
|
12
|
+
+generate-backgrounds($legacy-gray-blue-200, legacy-gray-blue-200)
|
|
13
|
+
+generate-backgrounds($teal-500, teal-500)
|
|
14
|
+
+generate-backgrounds($green-100, green-100)
|
|
15
|
+
+generate-backgrounds($purple-600, purple-600)
|
|
16
|
+
+generate-backgrounds($yellow-400, yellow-400)
|
|
17
|
+
+generate-backgrounds($gray-800, gray-800)
|
|
18
|
+
+generate-backgrounds($gray-200, gray-200)
|
|
11
19
|
|
|
12
|
-
|
|
13
|
-
+generate-backgrounds($green-spirit, green-spirit)
|
|
14
|
-
+generate-backgrounds($smart-brain, smart-brain)
|
|
15
|
-
+generate-backgrounds($happy-give, happy-give)
|
|
16
|
-
+generate-backgrounds($good-choice, good-choice)
|
|
17
|
-
+generate-backgrounds($light-sky, light-sky)
|
|
18
|
-
+generate-backgrounds($mindful-way, mindful-way)
|
|
19
|
-
+generate-backgrounds($peaceful-step, peaceful-step)
|
|
20
|
-
+generate-backgrounds($tolerant-turn, tolerant-turn)
|
|
21
|
-
+generate-backgrounds($open-mind, open-mind)
|
|
22
|
-
+generate-backgrounds($sunny-day, sunny-day)
|
|
23
|
-
+generate-backgrounds($strong-grey, strong-grey)
|
|
24
|
-
+generate-backgrounds($very-light-grey, silver-delight)
|
|
25
|
-
|
|
26
|
-
.text-color-white
|
|
27
|
-
color: white
|
|
28
|
-
|
|
29
|
-
.bg-color-green-spirit
|
|
20
|
+
.bg-green-500
|
|
30
21
|
.generic-teaser-swiper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active
|
|
31
22
|
background-color: white
|
data/_sass/lpm/_list.sass
CHANGED
data/_sass/lpm/_seperator.sass
CHANGED
data/_sass/lpm/_variables.sass
CHANGED
|
@@ -6,18 +6,3 @@ $gutter-width: 20px
|
|
|
6
6
|
$breakpoint-xs: 600px
|
|
7
7
|
$breakpoint-sm: 769px
|
|
8
8
|
$breakpoint-md: 1024px
|
|
9
|
-
|
|
10
|
-
// TODO: Diese Datei sollten wir später loswerden, damit alles über theme/colors.sass läuft.
|
|
11
|
-
|
|
12
|
-
$happy-give: #FF6F6C
|
|
13
|
-
$green-spirit: #9ecb09
|
|
14
|
-
$smart-brain: #309B89
|
|
15
|
-
$happy-give: #ff6f6c
|
|
16
|
-
$good-choice: #AECFD1
|
|
17
|
-
$light-sky: #4597A2
|
|
18
|
-
$mindful-way: #4E414B
|
|
19
|
-
$peaceful-step: #EDEED0
|
|
20
|
-
$tolerant-turn: #6D2C64
|
|
21
|
-
$open-mind: #FFB38C
|
|
22
|
-
$sunny-day: #F6CE46
|
|
23
|
-
$strong-grey: #3f3f3f
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
.supporter-tiles
|
|
19
19
|
|
|
20
20
|
.tile
|
|
21
|
-
background: $
|
|
21
|
+
background: $gray-200
|
|
22
22
|
margin-bottom: 20px
|
|
23
23
|
margin-top: 50px
|
|
24
24
|
padding: 30px
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
margin-left: (115px / -2)
|
|
33
33
|
width: 115px
|
|
34
34
|
height: 115px
|
|
35
|
-
background: $
|
|
35
|
+
background: $gray-200
|
|
36
36
|
border-radius: 100%
|
|
37
37
|
|
|
38
38
|
img
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
margin-bottom: 5px
|
|
69
69
|
|
|
70
70
|
.grey-background
|
|
71
|
-
background: $
|
|
71
|
+
background: $gray-200
|
|
72
72
|
padding: 30px 0
|
|
73
73
|
margin: 50px 0 0 0
|
|
74
74
|
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
margin-top: 50px
|
|
93
93
|
|
|
94
94
|
.header-illustration
|
|
95
|
-
background: $
|
|
95
|
+
background: $gray-200
|
|
96
96
|
border-radius: 100%
|
|
97
97
|
width: 90px
|
|
98
98
|
height: 90px
|
data/_sass/pages/help.sass
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
.help-author,
|
|
13
13
|
.help-date
|
|
14
14
|
padding: 10px
|
|
15
|
-
color: $
|
|
15
|
+
color: $gray-500
|
|
16
16
|
font-size: 16px
|
|
17
17
|
|
|
18
18
|
.help-categories
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
li > a
|
|
25
25
|
padding-right: 10px
|
|
26
26
|
padding-left: 10px
|
|
27
|
-
border-right: 1px solid $
|
|
27
|
+
border-right: 1px solid $gray-300
|
|
28
28
|
|
|
29
29
|
li:last-child a
|
|
30
30
|
border-right: 0
|
data/_sass/pages/news.sass
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: betterplace-content
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.89
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- betterplace.org Developers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|