futuro 0.2.2 → 0.2.3

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: aeb438d8757c0e4f43088dbbe91dd3df5e605f05c06c0f557f4a5bd1af110ac3
4
- data.tar.gz: 020eae905fef9e3e74e1af146e191f6ccefeb35979f229fd12f1b1d508919ef1
3
+ metadata.gz: 51b7f07aa26ec4145353d68017fb407d49c40cfa4217024602201c4f13a30ddd
4
+ data.tar.gz: f342b30a44720a8dadc265ff429b58767d4b65ebc5b2051bda15ba8995b4c75d
5
5
  SHA512:
6
- metadata.gz: 8122b8394ae03031ca3d9e2fec87b4772be510153696f8f5b6661544f505261788e8b279c8b006f47dc1a5cd74e97d99f13d40118593abd5ebe0b53d1853d3cb
7
- data.tar.gz: 2c74b0ef4191cfbed89840061ff9e597f95abd9b100c81a1c60a892bba4cac874a5c65e66ee6e8e44796f0319cdd23d168edbeb03a94caf858c05a76c16ef83f
6
+ metadata.gz: f0fb9e89e79b30872ead73da5d248397bd1844ff7b9e3e7e66ae067b6dc331e5e921543606c3cc1f6bed82662de0420d5cf6808ef19e00aae132ae1822851a76
7
+ data.tar.gz: 30a901a7cc2e7f7a6c7b9d7835351f80a0384d01a17958dc1723876bfe1656c2ff35477cf2cce52cc10efbf36b57e9cdec0529814fcae55a21767c045799c0f7
data/_sass/_box.scss CHANGED
@@ -4,5 +4,6 @@
4
4
  animation: load_border 1s steps(1) infinite;
5
5
  border: 3px solid;
6
6
  border-color: red;
7
+ max-width: 320px;
7
8
  }
8
9
  }
@@ -0,0 +1,160 @@
1
+
2
+ $system : rgb(110,70,160);
3
+ $brand : rgb(255,130,0);
4
+ $supply : rgb(240,10,10);
5
+ $demo : rgb(0,90,155);
6
+
7
+ $generic : #fe5900;
8
+ $theatre : #019fc6;
9
+ $talks : #ff9000;
10
+ $music : #dc3636;
11
+ $classical : #bf8f3a;
12
+ $cinema : #259d31;
13
+ $tours : #718ab2;
14
+ $hire : #412f79;
15
+ $membership : #5d91e5;
16
+ $art : #f90082;
17
+
18
+ $smoke : darken(white,7%);
19
+ $gray : darken(white,25%);
20
+ $gun : darken(white,60%);
21
+ $carbon : lighten(black,10%);
22
+ $coal : lighten(black,5%);
23
+
24
+ $min640w : 'only screen and (min-width: 640px)';
25
+ $min768w : 'only screen and (min-width: 768px)';
26
+ $min1024w : 'only screen and (min-width: 1024px)';
27
+
28
+
29
+ @mixin zero($b:0,$r:0,$l:0,$t:0) {
30
+ bottom: $b;
31
+ right: $r;
32
+ left: $l;
33
+ top: $t;
34
+ }
35
+
36
+ @mixin center() {
37
+ &:before {
38
+ display: inline-block;
39
+ vertical-align: middle;
40
+ margin-right: -0.25em;
41
+ height: 100%;
42
+ content: '';
43
+ }
44
+ }
45
+
46
+ @mixin ib() {
47
+ vertical-align: middle;
48
+ display: inline-block;
49
+ max-width: 90%;
50
+ }
51
+
52
+ @mixin cf {
53
+ &:before {
54
+ content: " ";
55
+ display: table;
56
+ }
57
+ &:after {
58
+ content: " ";
59
+ display: table;
60
+ clear: both;
61
+ }
62
+ }
63
+
64
+ @keyframes load_bg {
65
+ 33% {
66
+ background-color: blue;
67
+ width: 43%;
68
+ }
69
+ 66% {
70
+ background-color: black;
71
+ width: 93%;
72
+ }
73
+ }
74
+
75
+ @keyframes load_title {
76
+ 33% {
77
+ text-transform: none;
78
+ font-size: 44px;
79
+ color: blue;
80
+ }
81
+ 66% {
82
+ font-family: $book;
83
+ font-style: italic;
84
+ font-size: 54px;
85
+ color: black;
86
+ }
87
+ }
88
+
89
+ @keyframes load_border {
90
+ 33% {
91
+ border-color: blue;
92
+ }
93
+ 66% {
94
+ border-color: black;
95
+ }
96
+ }
97
+
98
+
99
+ %area_grid {
100
+ justify-content: center;
101
+ display: grid;
102
+ }
103
+
104
+ %grid {
105
+
106
+ &_default {
107
+ grid-template-columns: 40px minmax(240px,1000px) 40px;
108
+ }
109
+
110
+ &_overlay {
111
+ grid-template-columns: 40px minmax(240px,560px) 40px;
112
+ }
113
+
114
+ &_load {
115
+ grid-template-columns: 40px minmax(240px,320px) 40px;
116
+ }
117
+ }
118
+
119
+ %overlay {
120
+ display: none;
121
+
122
+ &_grid {
123
+ justify-content: center;
124
+
125
+ &.--open {
126
+ display: grid;
127
+ }
128
+ }
129
+
130
+ &_block {
131
+ text-align: center;
132
+ @include center();
133
+
134
+ &.--open {
135
+ display: block;
136
+ }
137
+ }
138
+ }
139
+
140
+ %wrap {
141
+
142
+ &_grid {
143
+ grid-column: 2 / 3;
144
+ display: grid;
145
+ }
146
+
147
+ &_block {
148
+ margin-right: auto;
149
+ margin-left: auto;
150
+ }
151
+
152
+ &_overlay {
153
+ min-width: 240px;
154
+ @include ib;
155
+ }
156
+ }
157
+
158
+ :focus {
159
+ outline: rgba(0,0,0,0);
160
+ }
data/_sass/_title.scss CHANGED
@@ -5,6 +5,7 @@
5
5
  text-transform: uppercase;
6
6
  padding-bottom: 20px;
7
7
  text-align: center;
8
+ max-width: 320px;
8
9
  font-size: 48px;
9
10
  color: red;
10
11
  }
data/_sass/futuro.scss CHANGED
@@ -2,10 +2,8 @@
2
2
  @charset 'utf-8';
3
3
 
4
4
  @import
5
- 'vars',
6
5
  'fonts',
7
- 'mixins',
8
- 'extends',
6
+ 'helpers',
9
7
  'base',
10
8
  'area',
11
9
  'bar',
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.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Heading
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-27 00:00:00.000000000 Z
11
+ date: 2019-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -104,17 +104,15 @@ files:
104
104
  - _sass/_box.scss
105
105
  - _sass/_btn.scss
106
106
  - _sass/_exit.scss
107
- - _sass/_extends.scss
108
107
  - _sass/_fonts.scss
109
108
  - _sass/_form.scss
109
+ - _sass/_helpers.scss
110
110
  - _sass/_input.scss
111
- - _sass/_mixins.scss
112
111
  - _sass/_overlay.scss
113
112
  - _sass/_site.scss
114
113
  - _sass/_task.scss
115
114
  - _sass/_textarea.scss
116
115
  - _sass/_title.scss
117
- - _sass/_vars.scss
118
116
  - _sass/_wrap.scss
119
117
  - _sass/futuro.scss
120
118
  - assets/art/favicon.psd
@@ -168,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
166
  - !ruby/object:Gem::Version
169
167
  version: '0'
170
168
  requirements: []
171
- rubygems_version: 3.0.3
169
+ rubygems_version: 3.0.1
172
170
  signing_key:
173
171
  specification_version: 4
174
172
  summary: Private theme for Paul Heading
data/_sass/_extends.scss DELETED
@@ -1,63 +0,0 @@
1
-
2
- %area_grid {
3
- justify-content: center;
4
- display: grid;
5
- }
6
-
7
- %grid {
8
-
9
- &_default {
10
- grid-template-columns: 40px minmax(240px,1000px) 40px;
11
- }
12
-
13
- &_load {
14
- grid-template-columns: 40px minmax(240px,320px) 40px;
15
- }
16
-
17
- &_overlay {
18
- grid-template-columns: 40px minmax(240px,560px) 40px;
19
- }
20
- }
21
-
22
- %overlay {
23
- display: none;
24
-
25
- &_grid {
26
- justify-content: center;
27
-
28
- &.--open {
29
- display: grid;
30
- }
31
- }
32
-
33
- &_block {
34
- text-align: center;
35
- @include center();
36
-
37
- &.--open {
38
- display: block;
39
- }
40
- }
41
- }
42
-
43
- %wrap {
44
-
45
- &_grid {
46
- grid-column: 2 / 3;
47
- display: grid;
48
- }
49
-
50
- &_block {
51
- margin-right: auto;
52
- margin-left: auto;
53
- }
54
-
55
- &_overlay {
56
- min-width: 240px;
57
- @include ib;
58
- }
59
- }
60
-
61
- :focus {
62
- outline: rgba(0,0,0,0);
63
- }
data/_sass/_mixins.scss DELETED
@@ -1,69 +0,0 @@
1
-
2
- @mixin zero($b:0,$r:0,$l:0,$t:0) {
3
- bottom: $b;
4
- right: $r;
5
- left: $l;
6
- top: $t;
7
- }
8
-
9
- @mixin center() {
10
- &:before {
11
- display: inline-block;
12
- vertical-align: middle;
13
- margin-right: -0.25em;
14
- height: 100%;
15
- content: '';
16
- }
17
- }
18
-
19
- @mixin ib() {
20
- vertical-align: middle;
21
- display: inline-block;
22
- max-width: 90%;
23
- }
24
-
25
- @mixin cf {
26
- &:before {
27
- content: " ";
28
- display: table;
29
- }
30
- &:after {
31
- content: " ";
32
- display: table;
33
- clear: both;
34
- }
35
- }
36
-
37
- @keyframes load_bg {
38
- 33% {
39
- background-color: blue;
40
- width: 43%;
41
- }
42
- 66% {
43
- background-color: black;
44
- width: 93%;
45
- }
46
- }
47
-
48
- @keyframes load_title {
49
- 33% {
50
- text-transform: none;
51
- font-size: 44px;
52
- color: blue;
53
- }
54
- 66% {
55
- font-family: $book;
56
- font-style: italic;
57
- font-size: 54px;
58
- color: black;
59
- }
60
- }
61
-
62
- @keyframes load_border {
63
- 33% {
64
- border-color: blue;
65
- }
66
- 66% {
67
- border-color: black;
68
- }
69
- }
data/_sass/_vars.scss DELETED
@@ -1,26 +0,0 @@
1
-
2
- $system : rgb(110,70,160);
3
- $brand : rgb(255,130,0);
4
- $supply : rgb(240,10,10);
5
- $demo : rgb(0,90,155);
6
-
7
- $generic : #fe5900;
8
- $theatre : #019fc6;
9
- $talks : #ff9000;
10
- $music : #dc3636;
11
- $classical : #bf8f3a;
12
- $cinema : #259d31;
13
- $tours : #718ab2;
14
- $hire : #412f79;
15
- $membership : #5d91e5;
16
- $art : #f90082;
17
-
18
- $smoke : darken(white,7%);
19
- $gray : darken(white,25%);
20
- $gun : darken(white,60%);
21
- $carbon : lighten(black,10%);
22
- $coal : lighten(black,5%);
23
-
24
- $min640w : 'only screen and (min-width: 640px)';
25
- $min768w : 'only screen and (min-width: 768px)';
26
- $min1024w : 'only screen and (min-width: 1024px)';