futuro 0.1.4 → 0.1.5
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/_sass/_base.scss +1 -4
- data/_sass/_helpers.scss +33 -29
- 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: cfd98012768e7b05e0302b12629ff23d9c0c9b899d264047045494cbd5ef0776
|
|
4
|
+
data.tar.gz: 3c3f8564bd6097a7be94d474ee4db24b58d8e8ef769fc05ff5b6c28406f891a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6f504d0ca97fbc02fa669a3044a586ddff884ab234e800944e209ac5f84741f14a5f2c0c0d38dbeeabc24004ee56bab9387326c4ec4e4ac9b83d01b7d514de3
|
|
7
|
+
data.tar.gz: 2f1cfafa0c424c4ae881bec15110fbb71130a5ebc5cdc62c2ed4090747c4005ad693ff78347f9b5ba76a9c9d3aa5951806536fdb5c75579a83cb88f184f9293b
|
data/_sass/_base.scss
CHANGED
data/_sass/_helpers.scss
CHANGED
|
@@ -21,11 +21,9 @@ $gun : darken(white,60%);
|
|
|
21
21
|
$carbon : lighten(black,10%);
|
|
22
22
|
$coal : lighten(black,5%);
|
|
23
23
|
|
|
24
|
-
$
|
|
25
|
-
$
|
|
26
|
-
$
|
|
27
|
-
$min1112w : 'only screen and (min-width: 1112px)';
|
|
28
|
-
$min1224w : 'only screen and (min-width: 1224px)';
|
|
24
|
+
$min640w : 'only screen and (min-width: 640px)';
|
|
25
|
+
$min768w : 'only screen and (min-width: 768px)';
|
|
26
|
+
$min1024w : 'only screen and (min-width: 1024px)';
|
|
29
27
|
|
|
30
28
|
@mixin zero($b:0,$r:0,$l:0,$t:0) {
|
|
31
29
|
bottom: $b;
|
|
@@ -62,38 +60,44 @@ $min1224w : 'only screen and (min-width: 1224px)';
|
|
|
62
60
|
}
|
|
63
61
|
}
|
|
64
62
|
|
|
65
|
-
%overlay_grid {
|
|
66
|
-
grid-template-columns: 40px minmax(240px,500px) 40px;
|
|
67
|
-
justify-content: center;
|
|
68
|
-
|
|
69
|
-
&.--open {
|
|
70
|
-
display: grid;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
%overlay_block {
|
|
75
|
-
text-align: center;
|
|
76
|
-
@include center();
|
|
77
|
-
|
|
78
|
-
&.--open {
|
|
79
|
-
display: block;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
63
|
%area_grid {
|
|
84
64
|
grid-template-columns: 40px minmax(240px,1000px) 40px;
|
|
85
65
|
justify-content: center;
|
|
86
66
|
display: grid;
|
|
87
67
|
}
|
|
88
68
|
|
|
89
|
-
%
|
|
90
|
-
|
|
91
|
-
|
|
69
|
+
%overlay {
|
|
70
|
+
&_grid {
|
|
71
|
+
grid-template-columns: 40px minmax(240px,500px) 40px;
|
|
72
|
+
justify-content: center;
|
|
73
|
+
|
|
74
|
+
&.--open {
|
|
75
|
+
display: grid;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
&_block {
|
|
79
|
+
text-align: center;
|
|
80
|
+
@include center();
|
|
81
|
+
|
|
82
|
+
&.--open {
|
|
83
|
+
display: block;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
92
86
|
}
|
|
93
87
|
|
|
94
|
-
%
|
|
95
|
-
|
|
96
|
-
|
|
88
|
+
%wrap {
|
|
89
|
+
&_grid {
|
|
90
|
+
grid-column: 2 / 3;
|
|
91
|
+
display: grid;
|
|
92
|
+
}
|
|
93
|
+
&_block {
|
|
94
|
+
margin-right: auto;
|
|
95
|
+
margin-left: auto;
|
|
96
|
+
}
|
|
97
|
+
&_overlay {
|
|
98
|
+
min-width: 240px;
|
|
99
|
+
@include ib;
|
|
100
|
+
}
|
|
97
101
|
}
|
|
98
102
|
|
|
99
103
|
:focus {
|
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.1.
|
|
4
|
+
version: 0.1.5
|
|
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-04-
|
|
11
|
+
date: 2019-04-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|