futuro 0.6.8 → 0.6.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/_includes/html/{head.liquid → head/meta.liquid} +1 -5
- data/_includes/html/head/scripts.liquid +3 -0
- data/_includes/html/loop/artwork/book/number.liquid +7 -0
- data/_includes/html/loop/artwork/book/pies.liquid +41 -0
- data/_includes/html/loop/artwork/book/textbox.liquid +16 -0
- data/_includes/html/loop/artwork/book/video.liquid +4 -0
- data/_includes/html/loop/artwork/book.liquid +10 -9
- data/_includes/html/page/artwork.liquid +3 -1
- data/_includes/html/page/header.liquid +33 -25
- data/_includes/html/page/layout/custom.liquid +20 -2
- data/_layouts/feed.html +3 -2
- data/_layouts/single.html +3 -2
- data/_sass/_base.scss +1 -1
- data/_sass/_block.scss +6 -0
- data/_sass/_item.scss +26 -0
- data/_sass/_list.scss +36 -0
- data/_sass/futuro.core.scss +10 -2
- data/_sass/helpers/extends.scss +67 -0
- data/_sass/helpers/mixins/cover.scss +13 -0
- data/_sass/helpers/mixins/pages.scss +65 -0
- data/_sass/helpers/mixins/pies.scss +10 -0
- data/_sass/helpers/mixins/roller.scss +20 -0
- data/_sass/helpers/mixins/search.scss +17 -0
- data/_sass/helpers/mixins/value.scss +135 -0
- data/_sass/helpers/mixins.scss +88 -0
- metadata +19 -6
- /data/_includes/html/{scripts.liquid → footer/scripts.liquid} +0 -0
- /data/_sass/wrap/{type/chapter.scss → chapter.scss} +0 -0
- /data/_sass/wrap/{type/page.scss → page.scss} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f925270ca15ab62c2c27dd37774923099afe5df66340bfb9c34bbc1053753f6
|
|
4
|
+
data.tar.gz: 559489a6a172ba89f3ac32332962e810d3fa20b785c1acb7c5b2a07a385ddb82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b138823152af25ffa98ace5f450ca1448fd9f253aca95638de891a202170e9331b52485e92ac2a4aa0aee8d489de43670ee3dfad5e67fd4d2780b545333e8d5a
|
|
7
|
+
data.tar.gz: 113ac0501483e3fcb9c2579a8fee47528fe2ff25527b3b3176f2d859b749b4a8a7590b0eb0b767a75bba1ce5bde44fb8ee616b5dfa60e1710c0e7a0481260bfc
|
|
@@ -9,9 +9,5 @@
|
|
|
9
9
|
{% feed_meta %}
|
|
10
10
|
{% include html/analytics.liquid %}
|
|
11
11
|
<script type="text/javascript">
|
|
12
|
-
let Config = {{ site.setup | jsonify }}
|
|
13
|
-
Colors = {{ site.color | jsonify }};
|
|
12
|
+
let Config = {{ site.setup | jsonify }};
|
|
14
13
|
</script>
|
|
15
|
-
<script src="{{ "/assets/js/futuro.header.vendor.js?v=1584032502171" | relative_url }}"></script>
|
|
16
|
-
<script src="{{ "/assets/js/futuro.header.custom.js?v=1584032502171" | relative_url }}"></script>
|
|
17
|
-
</head>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
|
|
2
|
+
{% assign chapter = page.chapter | replace: ' ','-' | downcase %}
|
|
3
|
+
{% assign pies = thing.pies %}
|
|
4
|
+
{% assign i = 0 %}
|
|
5
|
+
|
|
6
|
+
<ul class="list pies animate">
|
|
7
|
+
|
|
8
|
+
{%- for item in pies -%}
|
|
9
|
+
|
|
10
|
+
{% assign custom = item.title | replace: ' ','-' | downcase %}
|
|
11
|
+
{% assign i = i | plus: 1 %}
|
|
12
|
+
|
|
13
|
+
<li class="item pie {{ custom }}">
|
|
14
|
+
|
|
15
|
+
<span class="title pie pcent">{{ item.val | append: '%' }}</span>
|
|
16
|
+
|
|
17
|
+
<span class="block pie svg-wrap">
|
|
18
|
+
|
|
19
|
+
<span class="block pie svg-bg">
|
|
20
|
+
{%- include artwork/pie.svg -%}
|
|
21
|
+
</span>
|
|
22
|
+
|
|
23
|
+
<span class="block pie svg-data">
|
|
24
|
+
{%- include artwork/{{ chapter }}/composition/{{ i | append: '.svg' }} -%}
|
|
25
|
+
</span>
|
|
26
|
+
|
|
27
|
+
{%- if item.val > 50 -%}
|
|
28
|
+
<span class="block pie svg-data">
|
|
29
|
+
{%- include artwork/{{ chapter }}/composition/{{ i | append: 'B.svg' }} -%}
|
|
30
|
+
</span>
|
|
31
|
+
{%- endif -%}
|
|
32
|
+
|
|
33
|
+
</span>
|
|
34
|
+
|
|
35
|
+
<span class="title pie">{{ item.title }}</span>
|
|
36
|
+
|
|
37
|
+
</li>
|
|
38
|
+
|
|
39
|
+
{%- endfor -%}
|
|
40
|
+
|
|
41
|
+
</ul>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
{% assign textbox = thing.textbox %}
|
|
3
|
+
|
|
4
|
+
<ul class="list text-roller text split sml">
|
|
5
|
+
{%- for item in textbox -%}
|
|
6
|
+
{% assign custom = item.title | replace: '&','and' | downcase %}
|
|
7
|
+
<li class="item text-roller {{ custom | replace: ' ','-' }}">{{ item.title }}</li>
|
|
8
|
+
{%- endfor -%}
|
|
9
|
+
</ul>
|
|
10
|
+
|
|
11
|
+
<ul class="list text-output sml">
|
|
12
|
+
{%- for item in textbox -%}
|
|
13
|
+
{% assign custom = item.title | replace: '&','and' | downcase %}
|
|
14
|
+
<li class="item text-output {{ custom | replace: ' ','-' }}">{{ item.text }}</li>
|
|
15
|
+
{%- endfor -%}
|
|
16
|
+
</ul>
|
|
@@ -19,18 +19,19 @@
|
|
|
19
19
|
|
|
20
20
|
{% elsif thing.vid %}
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
<source id="mp4" src="{{ vid | replace: '.html','.mp4' }}" type="video/mp4">
|
|
24
|
-
</video>
|
|
22
|
+
{%- include html/loop/artwork/book/video.liquid -%}
|
|
25
23
|
|
|
26
24
|
{% elsif thing.number %}
|
|
27
25
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
26
|
+
{%- include html/loop/artwork/book/number.liquid -%}
|
|
27
|
+
|
|
28
|
+
{% elsif thing.textbox %}
|
|
29
|
+
|
|
30
|
+
{%- include html/loop/artwork/book/textbox.liquid -%}
|
|
31
|
+
|
|
32
|
+
{% elsif thing.pies %}
|
|
33
|
+
|
|
34
|
+
{%- include html/loop/artwork/book/pies.liquid -%}
|
|
34
35
|
|
|
35
36
|
{% endif %}
|
|
36
37
|
|
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
{% assign img = page.url | prepend: '/assets/img' %}
|
|
11
11
|
{% assign vid = page.url | prepend: '/assets/vid' %}
|
|
12
12
|
|
|
13
|
-
<div class="area page-artwork {
|
|
13
|
+
<div class="area page-artwork {% if site.setup.type %}{{ setup }}{% endif %}
|
|
14
|
+
{{ chapchap }}
|
|
15
|
+
{{ titltitl }}">
|
|
14
16
|
|
|
15
17
|
{%- if site.setup.style == "docs" -%}
|
|
16
18
|
|
|
@@ -1,30 +1,38 @@
|
|
|
1
1
|
|
|
2
|
-
{
|
|
3
|
-
{
|
|
4
|
-
{
|
|
5
|
-
{
|
|
6
|
-
{
|
|
7
|
-
{
|
|
8
|
-
{
|
|
2
|
+
{% assign style = site.setup.style | replace: ' ','-' | prepend: ' style-' | downcase %}
|
|
3
|
+
{% assign type = page.type | prepend: ' type-' %}
|
|
4
|
+
{% assign book = page.collection | prepend: ' book-' %}
|
|
5
|
+
{% assign chapter = page.chapter | replace: ' ','-' | prepend: ' chapter-' | downcase %}
|
|
6
|
+
{% assign topic = page.topic | prepend: ' topic-' | downcase %}
|
|
7
|
+
{% assign title = page.title | replace: ' ','-' | prepend: ' title-' | downcase %}
|
|
8
|
+
{% assign tag = page.tag | replace: ' ',' tag-' | prepend: ' tag-' %}
|
|
9
|
+
{% assign id1 = page.chapter | replace: ' ','-' | append: '-' %}
|
|
10
|
+
{% assign id2 = page.title | replace: ' ','-' %}
|
|
11
|
+
{% assign id = id1 | append: id2 | downcase %}
|
|
9
12
|
|
|
10
13
|
<div class="wrap
|
|
11
|
-
{{
|
|
12
|
-
{
|
|
13
|
-
{
|
|
14
|
-
{
|
|
15
|
-
{
|
|
16
|
-
{{
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
14
|
+
{{ type }}
|
|
15
|
+
{% if site.setup.style %}{{ style }}{% endif %}
|
|
16
|
+
{% if page.collection %}{{ book }}{% endif %}
|
|
17
|
+
{% if page.chapter %}{{ chapter }}{% endif %}
|
|
18
|
+
{% if page.topic %}{{ topic }}{% endif %}
|
|
19
|
+
{{ title }}">
|
|
20
|
+
|
|
21
|
+
<div class="block stop" id="{{ id }}"></div>
|
|
22
|
+
|
|
23
|
+
{% if page.type == 'chapter' %}
|
|
24
|
+
|
|
20
25
|
<div class="area
|
|
21
|
-
{{
|
|
22
|
-
{
|
|
23
|
-
{{
|
|
24
|
-
{{
|
|
25
|
-
|
|
26
|
+
{{ type }}
|
|
27
|
+
{% if site.setup.style %}{{ style }}{% endif %}
|
|
28
|
+
{{ book }}
|
|
29
|
+
{{ chapter }}">
|
|
30
|
+
|
|
31
|
+
{% else %}
|
|
32
|
+
|
|
26
33
|
<div class="area
|
|
27
|
-
{{
|
|
28
|
-
{
|
|
29
|
-
{
|
|
30
|
-
|
|
34
|
+
{{ type }}
|
|
35
|
+
{% if site.setup.style %}{{ style }}{% endif %}
|
|
36
|
+
{% if page.tag %}{{ tag }}{% endif %}">
|
|
37
|
+
|
|
38
|
+
{% endif %}
|
|
@@ -5,8 +5,26 @@
|
|
|
5
5
|
|
|
6
6
|
{% include html/page/title.liquid %}
|
|
7
7
|
{% include html/page/subtitle.liquid %}
|
|
8
|
-
|
|
9
|
-
{
|
|
8
|
+
|
|
9
|
+
{%- if page.text -%}
|
|
10
|
+
|
|
11
|
+
<div class="block page-split">
|
|
12
|
+
|
|
13
|
+
{%- for item in page.text -%}
|
|
14
|
+
{%- if item.o -%}
|
|
15
|
+
<div>
|
|
16
|
+
{{ item.o }}
|
|
17
|
+
</div>
|
|
18
|
+
{%- endif -%}
|
|
19
|
+
{%- endfor -%}
|
|
20
|
+
|
|
21
|
+
</div>
|
|
22
|
+
|
|
23
|
+
{%- else -%}
|
|
24
|
+
|
|
25
|
+
{{ page.content | markdownify }}
|
|
26
|
+
|
|
27
|
+
{%- endif -%}
|
|
10
28
|
|
|
11
29
|
</div>
|
|
12
30
|
|
data/_layouts/feed.html
CHANGED
|
@@ -8,7 +8,8 @@ layout: mini
|
|
|
8
8
|
<!DOCTYPE html>
|
|
9
9
|
<html lang="{{ page.lang | default: site.lang | default: 'en' }}" class="no-js">
|
|
10
10
|
|
|
11
|
-
{% include html/head.liquid %}
|
|
11
|
+
{% include html/head/meta.liquid %}
|
|
12
|
+
{% include html/head/scripts.liquid %}
|
|
12
13
|
|
|
13
14
|
<body class="{% if site.setup.install %}{{ install }}{% endif %}
|
|
14
15
|
{% if site.setup.style %}{{ style }}{% endif %}
|
|
@@ -59,6 +60,6 @@ layout: mini
|
|
|
59
60
|
|
|
60
61
|
</body>
|
|
61
62
|
|
|
62
|
-
{% include html/scripts.liquid %}
|
|
63
|
+
{% include html/footer/scripts.liquid %}
|
|
63
64
|
|
|
64
65
|
</html>
|
data/_layouts/single.html
CHANGED
|
@@ -8,7 +8,8 @@ layout: mini
|
|
|
8
8
|
<!DOCTYPE html>
|
|
9
9
|
<html lang="{{ page.lang | default: site.lang | default: 'en' }}" class="no-js">
|
|
10
10
|
|
|
11
|
-
{% include html/head.liquid %}
|
|
11
|
+
{% include html/head/meta.liquid %}
|
|
12
|
+
{% include html/head/scripts.liquid %}
|
|
12
13
|
|
|
13
14
|
<body class="{% if site.setup.install %}{{ install }}{% endif %}
|
|
14
15
|
{% if site.setup.style %}{{ style }}{% endif %}
|
|
@@ -57,6 +58,6 @@ layout: mini
|
|
|
57
58
|
|
|
58
59
|
</body>
|
|
59
60
|
|
|
60
|
-
{% include html/scripts.liquid %}
|
|
61
|
+
{% include html/footer/scripts.liquid %}
|
|
61
62
|
|
|
62
63
|
</html>
|
data/_sass/_base.scss
CHANGED
data/_sass/_block.scss
CHANGED
data/_sass/_item.scss
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
.item.pie {
|
|
3
|
+
grid-row-gap: 20px;
|
|
4
|
+
text-align: center;
|
|
5
|
+
display: grid;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.item.text-roller {
|
|
9
|
+
@extend %item_roller;
|
|
10
|
+
@include ThemeRoller("culture-addicts",$addicts);
|
|
11
|
+
@include ThemeRoller("family-centric",$family);
|
|
12
|
+
@include ThemeRoller("receptive",$receptive);
|
|
13
|
+
@include ThemeRoller("value-seekers",$value);
|
|
14
|
+
@include ThemeRoller("next-generation",$next);
|
|
15
|
+
@include ThemeRoller("maybe-someday",$maybe);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.item.text-output {
|
|
19
|
+
@extend %item_output;
|
|
20
|
+
@include ThemeOutput("culture-addicts",$addicts);
|
|
21
|
+
@include ThemeOutput("family-centric",$family);
|
|
22
|
+
@include ThemeOutput("receptive",$receptive);
|
|
23
|
+
@include ThemeOutput("value-seekers",$value);
|
|
24
|
+
@include ThemeOutput("next-generation",$next);
|
|
25
|
+
@include ThemeOutput("maybe-someday",$maybe);
|
|
26
|
+
}
|
data/_sass/_list.scss
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
.list.text-roller {
|
|
3
|
+
@extend %list-roller;
|
|
4
|
+
margin: 100px 0 30px 40px;
|
|
5
|
+
|
|
6
|
+
&.pies {
|
|
7
|
+
margin: 0 0 30px;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.list.text-output {
|
|
12
|
+
@extend %list-output;
|
|
13
|
+
|
|
14
|
+
svg {
|
|
15
|
+
margin: 0 auto;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.list.pies {
|
|
20
|
+
@include grid(3);
|
|
21
|
+
@extend %bold;
|
|
22
|
+
margin: 80px 0 0 -40px;
|
|
23
|
+
list-style: none;
|
|
24
|
+
padding: 0;
|
|
25
|
+
|
|
26
|
+
@include ThemePies("culture-addicts",$addicts);
|
|
27
|
+
@include ThemePies("family-centric",$family);
|
|
28
|
+
@include ThemePies("receptive",$receptive);
|
|
29
|
+
@include ThemePies("value-seekers",$value);
|
|
30
|
+
@include ThemePies("next-generation",$next);
|
|
31
|
+
@include ThemePies("maybe-someday",$maybe);
|
|
32
|
+
|
|
33
|
+
svg {
|
|
34
|
+
margin: 0 auto;
|
|
35
|
+
}
|
|
36
|
+
}
|
data/_sass/futuro.core.scss
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
@import
|
|
5
5
|
"helpers/variables",
|
|
6
|
+
"helpers/mixins/cover",
|
|
7
|
+
"helpers/mixins/pages",
|
|
8
|
+
"helpers/mixins/pies",
|
|
9
|
+
"helpers/mixins/roller",
|
|
10
|
+
"helpers/mixins/search",
|
|
11
|
+
"helpers/mixins/value",
|
|
6
12
|
"helpers/mixins",
|
|
7
13
|
"helpers/extends",
|
|
8
14
|
"helpers/themes",
|
|
@@ -30,6 +36,8 @@
|
|
|
30
36
|
"exit",
|
|
31
37
|
"form",
|
|
32
38
|
"input",
|
|
39
|
+
"item",
|
|
40
|
+
"list",
|
|
33
41
|
"lnk",
|
|
34
42
|
"nav",
|
|
35
43
|
"site",
|
|
@@ -43,8 +51,8 @@
|
|
|
43
51
|
"wrap/overlay/mobile",
|
|
44
52
|
"wrap/overlay/search",
|
|
45
53
|
"wrap/overlay",
|
|
46
|
-
"wrap/
|
|
47
|
-
"wrap/
|
|
54
|
+
"wrap/chapter",
|
|
55
|
+
"wrap/page",
|
|
48
56
|
"wrap/book",
|
|
49
57
|
"wrap/home",
|
|
50
58
|
"wrap/scroller";
|
data/_sass/helpers/extends.scss
CHANGED
|
@@ -76,3 +76,70 @@
|
|
|
76
76
|
grid-template-columns: 860px 140px;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
+
|
|
80
|
+
%tight {
|
|
81
|
+
letter-spacing: -0.03em;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// MINDSETS IMPORT ************************************************************
|
|
85
|
+
|
|
86
|
+
%list-roller {
|
|
87
|
+
@extend %bold;
|
|
88
|
+
max-width: 320px;
|
|
89
|
+
list-style: none;
|
|
90
|
+
font-size: 21px;
|
|
91
|
+
display: grid;
|
|
92
|
+
padding: 0;
|
|
93
|
+
|
|
94
|
+
&.split {
|
|
95
|
+
grid-template-columns: repeat(2,50%);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
&.sml {
|
|
99
|
+
font-size: 16px;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
%list-output {
|
|
104
|
+
margin: 0 0 0 40px;
|
|
105
|
+
max-width: 320px;
|
|
106
|
+
list-style: none;
|
|
107
|
+
padding: 0;
|
|
108
|
+
|
|
109
|
+
&.sml {
|
|
110
|
+
font-size: 16px;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
%table {
|
|
115
|
+
grid-template-columns: 220px repeat(4,110px);
|
|
116
|
+
list-style: none;
|
|
117
|
+
display: grid;
|
|
118
|
+
padding: 0;
|
|
119
|
+
|
|
120
|
+
li {
|
|
121
|
+
padding: 5px;
|
|
122
|
+
|
|
123
|
+
&:nth-of-type(n+2) {
|
|
124
|
+
text-align: center;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
%item_roller {
|
|
130
|
+
background-color: rgba(0,0,0,0.05);
|
|
131
|
+
border: 2px solid white;
|
|
132
|
+
padding: 8px 10px 6px;
|
|
133
|
+
cursor: pointer;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
%item_output {
|
|
137
|
+
background-color: rgba(black,5%);
|
|
138
|
+
border: 2px solid;
|
|
139
|
+
padding: 10px;
|
|
140
|
+
display: none;
|
|
141
|
+
|
|
142
|
+
&.active {
|
|
143
|
+
display: block;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
|
|
2
|
+
@mixin ThemePages($name,$col,$right) {
|
|
3
|
+
|
|
4
|
+
// Chapter Pages
|
|
5
|
+
|
|
6
|
+
.wrap.type-page.chapter-#{$name} {
|
|
7
|
+
|
|
8
|
+
.title.page-weight {
|
|
9
|
+
color: $col;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.title.page-chapter {
|
|
13
|
+
right: $right;
|
|
14
|
+
color: $col;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.title.animate {
|
|
18
|
+
color: $col;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.block.page-icon {
|
|
22
|
+
fill: $col;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.lnk.stats {
|
|
26
|
+
color: $col;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.item.text-roller {
|
|
30
|
+
background-color: rgba($col,10%);
|
|
31
|
+
color: $col;
|
|
32
|
+
|
|
33
|
+
&.active {
|
|
34
|
+
background-color: $col;
|
|
35
|
+
color: white;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.item.text-output {
|
|
40
|
+
background-color: rgba($col,10%);
|
|
41
|
+
border-color: rgba($col,20%);
|
|
42
|
+
color: $col;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.list.pies {
|
|
46
|
+
color: $col;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.block.pie.svg-wrap {
|
|
50
|
+
fill: $col;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
svg#background {
|
|
54
|
+
fill: $col;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
svg#tickets {
|
|
58
|
+
fill: $col;
|
|
59
|
+
|
|
60
|
+
.bar {
|
|
61
|
+
stroke: $col !important;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
@mixin ThemeRoller($name,$col) {
|
|
3
|
+
&.#{$name} {
|
|
4
|
+
background-color: rgba($col,10%);
|
|
5
|
+
color: $col;
|
|
6
|
+
|
|
7
|
+
&.active {
|
|
8
|
+
background-color: $col;
|
|
9
|
+
color: white;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@mixin ThemeOutput($name,$col) {
|
|
15
|
+
&.#{$name} {
|
|
16
|
+
background-color: rgba($col,10%);
|
|
17
|
+
border-color: rgba($col,20%);
|
|
18
|
+
color: $col;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
|
|
2
|
+
@mixin ThemeValue($val,$prefix:false,$important:false) {
|
|
3
|
+
|
|
4
|
+
@if $prefix {
|
|
5
|
+
@if $important {
|
|
6
|
+
&.#{$prefix}culture-addicts {
|
|
7
|
+
#{$val} : $addicts !important;
|
|
8
|
+
}
|
|
9
|
+
} @else {
|
|
10
|
+
&.#{$prefix}culture-addicts {
|
|
11
|
+
#{$val} : $addicts;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
} @else {
|
|
15
|
+
@if $important {
|
|
16
|
+
&.culture-addicts {
|
|
17
|
+
#{$val} : $addicts !important;
|
|
18
|
+
}
|
|
19
|
+
} @else {
|
|
20
|
+
&.culture-addicts {
|
|
21
|
+
#{$val} : $addicts;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@if $prefix {
|
|
27
|
+
@if $important {
|
|
28
|
+
&.#{$prefix}family-centric {
|
|
29
|
+
#{$val} : $family !important;
|
|
30
|
+
}
|
|
31
|
+
} @else {
|
|
32
|
+
&.#{$prefix}family-centric {
|
|
33
|
+
#{$val} : $family;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
} @else {
|
|
37
|
+
@if $important {
|
|
38
|
+
&.family-centric {
|
|
39
|
+
#{$val} : $family !important;
|
|
40
|
+
}
|
|
41
|
+
} @else {
|
|
42
|
+
&.family-centric {
|
|
43
|
+
#{$val} : $family;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@if $prefix {
|
|
49
|
+
@if $important {
|
|
50
|
+
&.#{$prefix}receptive {
|
|
51
|
+
#{$val} : $receptive !important;
|
|
52
|
+
}
|
|
53
|
+
} @else {
|
|
54
|
+
&.#{$prefix}receptive {
|
|
55
|
+
#{$val} : $receptive;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
} @else {
|
|
59
|
+
@if $important {
|
|
60
|
+
&.receptive {
|
|
61
|
+
#{$val} : $receptive !important;
|
|
62
|
+
}
|
|
63
|
+
} @else {
|
|
64
|
+
&.receptive {
|
|
65
|
+
#{$val} : $receptive;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@if $prefix {
|
|
71
|
+
@if $important {
|
|
72
|
+
&.#{$prefix}value-seekers {
|
|
73
|
+
#{$val} : $value !important;
|
|
74
|
+
}
|
|
75
|
+
} @else {
|
|
76
|
+
&.#{$prefix}value-seekers {
|
|
77
|
+
#{$val} : $value;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
} @else {
|
|
81
|
+
@if $important {
|
|
82
|
+
&.value-seekers {
|
|
83
|
+
#{$val} : $value !important;
|
|
84
|
+
}
|
|
85
|
+
} @else {
|
|
86
|
+
&.value-seekers {
|
|
87
|
+
#{$val} : $value;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@if $prefix {
|
|
93
|
+
@if $important {
|
|
94
|
+
&.#{$prefix}next-generation {
|
|
95
|
+
#{$val} : $next !important;
|
|
96
|
+
}
|
|
97
|
+
} @else {
|
|
98
|
+
&.#{$prefix}next-generation {
|
|
99
|
+
#{$val} : $next;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
} @else {
|
|
103
|
+
@if $important {
|
|
104
|
+
&.next-generation {
|
|
105
|
+
#{$val} : $next !important;
|
|
106
|
+
}
|
|
107
|
+
} @else {
|
|
108
|
+
&.next-generation {
|
|
109
|
+
#{$val} : $next;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
@if $prefix {
|
|
115
|
+
@if $important {
|
|
116
|
+
&.#{$prefix}maybe-someday {
|
|
117
|
+
#{$val} : $maybe !important;
|
|
118
|
+
}
|
|
119
|
+
} @else {
|
|
120
|
+
&.#{$prefix}maybe-someday {
|
|
121
|
+
#{$val} : $maybe;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
} @else {
|
|
125
|
+
@if $important {
|
|
126
|
+
&.maybe-someday {
|
|
127
|
+
#{$val} : $maybe !important;
|
|
128
|
+
}
|
|
129
|
+
} @else {
|
|
130
|
+
&.maybe-someday {
|
|
131
|
+
#{$val} : $maybe;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
data/_sass/helpers/mixins.scss
CHANGED
|
@@ -88,3 +88,91 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
|
+
|
|
92
|
+
// MINDSETS IMPORT ************************************************************
|
|
93
|
+
|
|
94
|
+
@mixin background($col) {
|
|
95
|
+
svg#background {
|
|
96
|
+
fill: $col;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
svg#tickets {
|
|
100
|
+
g.number path {
|
|
101
|
+
fill: $col;
|
|
102
|
+
}
|
|
103
|
+
path.bar {
|
|
104
|
+
stroke: $col !important;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.title._animate {
|
|
109
|
+
opacity: 0.4;
|
|
110
|
+
color: $col;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
@mixin chunk($col) {
|
|
116
|
+
path {
|
|
117
|
+
fill: $col;
|
|
118
|
+
}
|
|
119
|
+
.title {
|
|
120
|
+
color: $col;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
@mixin grid($rep) {
|
|
125
|
+
grid-template-columns: repeat($rep,1fr);
|
|
126
|
+
display: grid;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
@mixin rollover($type) {
|
|
131
|
+
|
|
132
|
+
.list {
|
|
133
|
+
&._text {
|
|
134
|
+
&-roller {
|
|
135
|
+
border-color: white;
|
|
136
|
+
}
|
|
137
|
+
&-output {
|
|
138
|
+
border-color: rgba($type,0.2);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.item {
|
|
144
|
+
&._text {
|
|
145
|
+
&-roller {
|
|
146
|
+
background-color: rgba($type,0.1);
|
|
147
|
+
border-color: white;
|
|
148
|
+
color: $type;
|
|
149
|
+
|
|
150
|
+
&.active {
|
|
151
|
+
background-color: $type;
|
|
152
|
+
color: white;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
&-output {
|
|
156
|
+
background-color: rgba($type,0.1);
|
|
157
|
+
border-color: rgba($type,0.2);
|
|
158
|
+
color: $type;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
@mixin theme_roller($type) {
|
|
165
|
+
background-color: rgba($type,0.1);
|
|
166
|
+
color: $type;
|
|
167
|
+
|
|
168
|
+
&.active {
|
|
169
|
+
background-color: $type;
|
|
170
|
+
color: white;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
@mixin theme_output($type) {
|
|
175
|
+
background-color: rgba($type,0.1);
|
|
176
|
+
border-color: rgba($type,0.2);
|
|
177
|
+
color: $type;
|
|
178
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: futuro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Heading
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-03-
|
|
11
|
+
date: 2020-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -93,8 +93,14 @@ files:
|
|
|
93
93
|
- _includes/html/assign.liquid
|
|
94
94
|
- _includes/html/filter/loop.liquid
|
|
95
95
|
- _includes/html/filter/type.liquid
|
|
96
|
-
- _includes/html/
|
|
96
|
+
- _includes/html/footer/scripts.liquid
|
|
97
|
+
- _includes/html/head/meta.liquid
|
|
98
|
+
- _includes/html/head/scripts.liquid
|
|
97
99
|
- _includes/html/loop/artwork/book.liquid
|
|
100
|
+
- _includes/html/loop/artwork/book/number.liquid
|
|
101
|
+
- _includes/html/loop/artwork/book/pies.liquid
|
|
102
|
+
- _includes/html/loop/artwork/book/textbox.liquid
|
|
103
|
+
- _includes/html/loop/artwork/book/video.liquid
|
|
98
104
|
- _includes/html/loop/artwork/docs.liquid
|
|
99
105
|
- _includes/html/loop/search.liquid
|
|
100
106
|
- _includes/html/overlay.liquid
|
|
@@ -122,7 +128,6 @@ files:
|
|
|
122
128
|
- _includes/html/page/utils/author.liquid
|
|
123
129
|
- _includes/html/page/utils/share.liquid
|
|
124
130
|
- _includes/html/page/utils/update.liquid
|
|
125
|
-
- _includes/html/scripts.liquid
|
|
126
131
|
- _includes/svg/orwell/animal/icon.svg
|
|
127
132
|
- _includes/svg/site/book/orwell.svg
|
|
128
133
|
- _includes/svg/site/book/woolf.svg
|
|
@@ -154,6 +159,8 @@ files:
|
|
|
154
159
|
- _sass/_exit.scss
|
|
155
160
|
- _sass/_form.scss
|
|
156
161
|
- _sass/_input.scss
|
|
162
|
+
- _sass/_item.scss
|
|
163
|
+
- _sass/_list.scss
|
|
157
164
|
- _sass/_lnk.scss
|
|
158
165
|
- _sass/_nav.scss
|
|
159
166
|
- _sass/_normalize.scss
|
|
@@ -184,19 +191,25 @@ files:
|
|
|
184
191
|
- _sass/futuro.shopify.scss
|
|
185
192
|
- _sass/helpers/extends.scss
|
|
186
193
|
- _sass/helpers/mixins.scss
|
|
194
|
+
- _sass/helpers/mixins/cover.scss
|
|
195
|
+
- _sass/helpers/mixins/pages.scss
|
|
196
|
+
- _sass/helpers/mixins/pies.scss
|
|
197
|
+
- _sass/helpers/mixins/roller.scss
|
|
198
|
+
- _sass/helpers/mixins/search.scss
|
|
199
|
+
- _sass/helpers/mixins/value.scss
|
|
187
200
|
- _sass/helpers/themes.scss
|
|
188
201
|
- _sass/helpers/variables.scss
|
|
189
202
|
- _sass/title/overlay.scss
|
|
190
203
|
- _sass/wrap/book.scss
|
|
204
|
+
- _sass/wrap/chapter.scss
|
|
191
205
|
- _sass/wrap/home.scss
|
|
192
206
|
- _sass/wrap/overlay.scss
|
|
193
207
|
- _sass/wrap/overlay/legacy.scss
|
|
194
208
|
- _sass/wrap/overlay/load.scss
|
|
195
209
|
- _sass/wrap/overlay/mobile.scss
|
|
196
210
|
- _sass/wrap/overlay/search.scss
|
|
211
|
+
- _sass/wrap/page.scss
|
|
197
212
|
- _sass/wrap/scroller.scss
|
|
198
|
-
- _sass/wrap/type/chapter.scss
|
|
199
|
-
- _sass/wrap/type/page.scss
|
|
200
213
|
- assets/css/fallback.jpg
|
|
201
214
|
- assets/css/favicon.png
|
|
202
215
|
- assets/css/styles.scss
|
|
File without changes
|
|
File without changes
|
|
File without changes
|