futuro 0.6.8 → 0.6.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3682f0fcd80ad725edcca22457836c9b160204921c9f99a67531440480384d61
4
- data.tar.gz: 260dc3e2cf6d4a9da2442bfbcd81a0ba6b618621ef768ed956ef45b2901b7c1d
3
+ metadata.gz: 4f925270ca15ab62c2c27dd37774923099afe5df66340bfb9c34bbc1053753f6
4
+ data.tar.gz: 559489a6a172ba89f3ac32332962e810d3fa20b785c1acb7c5b2a07a385ddb82
5
5
  SHA512:
6
- metadata.gz: fffa8aaf2042f604f82bf4718aab6722f1fedab8b17d77b5c5678e1ae549b2a38724143565fdccd1c2d7a3b6f4cb5ab458651f330ec260716104f6d97371d4d3
7
- data.tar.gz: b339990557b3658d9d04e67483882d85ffc907b6b99efae85074b5b57d290be77483c99e6ded57b0430f91daf9dbfb5347562af8cce9e93463f9a96251c15d13
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,3 @@
1
+ <script src="{{ "/assets/js/futuro.header.vendor.js?v=1584032502171" | relative_url }}"></script>
2
+ <script src="{{ "/assets/js/futuro.header.custom.js?v=1584032502171" | relative_url }}"></script>
3
+ </head>
@@ -0,0 +1,7 @@
1
+
2
+ {% assign number = thing.number %}
3
+
4
+ <div class="block animate">
5
+ <div class="title animate lrg">{{ number.val }}</div>
6
+ <div class="title animate sml info">{{ number.txt }}</div>
7
+ </div>
@@ -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>
@@ -0,0 +1,4 @@
1
+
2
+ <video autoplay playsinline muted loop poster="{{ img | replace: '.html','.jpg' }}">
3
+ <source id="mp4" src="{{ vid | replace: '.html','.mp4' }}" type="video/mp4">
4
+ </video>
@@ -19,18 +19,19 @@
19
19
 
20
20
  {% elsif thing.vid %}
21
21
 
22
- <video autoplay playsinline muted loop poster="{{ img | replace: '.html','.jpg' }}">
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
- {% for item in thing.number %}
29
- <div class="block animate">
30
- <div class="title animate lrg">{{ item.val }}</div>
31
- <div class="title animate sml info">{{ item.txt }}</div>
32
- </div>
33
- {% endfor %}
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 {{ setup }} {{ chapchap }} {{ titltitl }}">
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
- {%- assign type = page.type | prepend: ' type-' -%}
3
- {%- assign book = page.collection | prepend: ' book-' -%}
4
- {%- assign style = site.setup.style | replace: ' ','-' | prepend: ' style-' | downcase -%}
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-' -%}
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
- {{- type -}}
12
- {%- if site.setup.style -%}{{- style -}}{%- endif -%}
13
- {%- if page.collection -%}{{- book -}}{%- endif -%}
14
- {%- if page.chapter -%}{{- chapter -}}{%- endif -%}
15
- {%- if page.topic -%}{{- topic -}}{%- endif -%}
16
- {{- title -}}">
17
- <div class="block stop" id="{%- if page.chapter -%}{{- page.chapter | replace: ' ','-' | downcase | append: '-' -}}{%- endif -%}
18
- {{- page.title | replace: ' ','-' | downcase -}}"></div>
19
- {%- if page.type == 'chapter' -%}
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
- {{- type -}}
22
- {%- if site.setup.style -%}{{- style -}}{%- endif -%}
23
- {{- book -}}
24
- {{- chapter -}}">
25
- {%- else -%}
26
+ {{ type }}
27
+ {% if site.setup.style %}{{ style }}{% endif %}
28
+ {{ book }}
29
+ {{ chapter }}">
30
+
31
+ {% else %}
32
+
26
33
  <div class="area
27
- {{- type -}}
28
- {%- if site.setup.style -%}{{- style -}}{%- endif -%}
29
- {%- if page.tag -%}{{- tag -}}{%- endif -%}">
30
- {%- endif -%}
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
- {{ page.content | markdownify }}
9
- {% include html/page/artwork.liquid %}
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
@@ -29,7 +29,7 @@ html {
29
29
 
30
30
  body {
31
31
  @extend %book;
32
- letter-spacing: -0.05rem;
32
+ letter-spacing: -0.02em;
33
33
  font-size: 1.8rem;
34
34
  line-height: 1.3;
35
35
  }
data/_sass/_block.scss CHANGED
@@ -9,6 +9,12 @@
9
9
  left: auto;
10
10
  }
11
11
 
12
+ .block.page-split {
13
+ grid-template-columns: repeat(2,1fr);
14
+ grid-column-gap: 40px;
15
+ display: grid;
16
+ }
17
+
12
18
  .block.scroller {
13
19
  @include zeros;
14
20
  grid-template-columns: 1fr 26px 1fr;
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
+ }
@@ -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/type/chapter",
47
- "wrap/type/page",
54
+ "wrap/chapter",
55
+ "wrap/page",
48
56
  "wrap/book",
49
57
  "wrap/home",
50
58
  "wrap/scroller";
@@ -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,13 @@
1
+
2
+ @mixin ThemeCover($name,$col,$left) {
3
+
4
+ // Chapter Covers
5
+
6
+ .wrap.type-chapter.chapter-#{$name} {
7
+ background-color: $col;
8
+
9
+ .title.chapter-title {
10
+ left: $left;
11
+ }
12
+ }
13
+ }
@@ -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,10 @@
1
+
2
+ @mixin ThemePies($name,$col) {
3
+ &.#{$name} {
4
+ color: $col;
5
+
6
+ .chunk.#{$name} {
7
+ opacity: 1;
8
+ }
9
+ }
10
+ }
@@ -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,17 @@
1
+
2
+ @mixin ThemeSearch($name,$col) {
3
+
4
+ // Search Results
5
+
6
+ .block.results-entry.chapter-#{$name} {
7
+ color: $col;
8
+
9
+ &:hover {
10
+ background-color: rgba($col,10%);
11
+ }
12
+
13
+ .block.results-dot {
14
+ background-color: $col;
15
+ }
16
+ }
17
+ }
@@ -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
+ }
@@ -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.8
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-17 00:00:00.000000000 Z
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/head.liquid
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