flake-scss 0.1.8 → 0.1.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/lib/flake/scss/version.rb +1 -1
- data/vendor/assets/stylesheets/_flake.scss +23 -18
- data/vendor/assets/stylesheets/_variables.scss +22 -0
- data/vendor/assets/stylesheets/animations/_transitions.scss +37 -0
- data/vendor/assets/stylesheets/background/_colors.scss +42 -42
- data/vendor/assets/stylesheets/border/_colors.scss +41 -41
- data/vendor/assets/stylesheets/border/_general.scss +28 -31
- data/vendor/assets/stylesheets/border/_radius.scss +25 -26
- data/vendor/assets/stylesheets/flake/_breakpoints.scss +6 -9
- data/vendor/assets/stylesheets/flake/_colors-list.scss +30 -25
- data/vendor/assets/stylesheets/general/_display.scss +30 -31
- data/vendor/assets/stylesheets/general/_general.scss +0 -4
- data/vendor/assets/stylesheets/general/_position.scss +41 -43
- data/vendor/assets/stylesheets/general/_z-index.scss +16 -17
- data/vendor/assets/stylesheets/layout/_flex.scss +37 -38
- data/vendor/assets/stylesheets/shadows/_shadows.scss +27 -28
- data/vendor/assets/stylesheets/sizing/_grid.scss +49 -47
- data/vendor/assets/stylesheets/sizing/_spacing.scss +41 -42
- data/vendor/assets/stylesheets/text/_align.scss +15 -13
- data/vendor/assets/stylesheets/text/_colors.scss +27 -27
- data/vendor/assets/stylesheets/text/_fonts.scss +12 -13
- data/vendor/assets/stylesheets/text/_sizes.scss +9 -7
- data/vendor/assets/stylesheets/text/_style.scss +40 -31
- metadata +3 -2
@@ -52,19 +52,18 @@ $monospace: "Palatino Linotype",
|
|
52
52
|
Georgia,
|
53
53
|
serif !default;
|
54
54
|
|
55
|
-
$font-families: (
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
monospace: $monospace
|
61
|
-
);
|
62
|
-
}
|
55
|
+
$font-families: (
|
56
|
+
serif: $serif,
|
57
|
+
sans-serif: $sans-serif,
|
58
|
+
monospace: $monospace
|
59
|
+
) !default;
|
63
60
|
|
64
|
-
@
|
65
|
-
|
66
|
-
font-family
|
67
|
-
|
61
|
+
@if index($components, fonts) {
|
62
|
+
@each $font-family, $value in $font-families {
|
63
|
+
.font-#{$font-family} {
|
64
|
+
font-family: $value;
|
65
|
+
}
|
68
66
|
|
69
|
-
|
67
|
+
$addme: add-to-apply-map(font-#{$font-family}, "font-family", "#{$value}");
|
68
|
+
}
|
70
69
|
}
|
@@ -1,13 +1,15 @@
|
|
1
|
-
$sizes: (
|
1
|
+
$font-sizes: (
|
2
2
|
small: .85em,
|
3
3
|
normal: 16px,
|
4
4
|
large: 1.15em
|
5
|
-
);
|
5
|
+
) !default;
|
6
6
|
|
7
|
-
@
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
@if index($components, font-sizes) {
|
8
|
+
@each $size, $value in $font-sizes {
|
9
|
+
.text-#{$size} {
|
10
|
+
font-size: $value;
|
11
|
+
}
|
11
12
|
|
12
|
-
|
13
|
+
$addme: add-to-apply-map(text-#{$size}, "font-size", "#{$value}");
|
14
|
+
}
|
13
15
|
}
|
@@ -3,55 +3,64 @@ $decoration: (
|
|
3
3
|
line-through,
|
4
4
|
underline,
|
5
5
|
none
|
6
|
-
);
|
6
|
+
) !default;
|
7
7
|
|
8
|
-
@
|
9
|
-
|
10
|
-
text
|
11
|
-
|
8
|
+
@if index($components, text-decoration) {
|
9
|
+
@each $value in $decoration {
|
10
|
+
.text-#{$value} {
|
11
|
+
text-decoration: $value;
|
12
|
+
}
|
12
13
|
|
13
|
-
|
14
|
+
$addme: add-to-apply-map(text-#{$value}, "text-decoration", "#{$value}");
|
15
|
+
}
|
14
16
|
}
|
15
17
|
|
16
|
-
$style: (
|
18
|
+
$font-style: (
|
17
19
|
normal,
|
18
20
|
italic,
|
19
21
|
oblique
|
20
|
-
);
|
22
|
+
) !default;
|
21
23
|
|
22
|
-
@
|
23
|
-
|
24
|
-
font
|
25
|
-
|
24
|
+
@if index($components, font-style) {
|
25
|
+
@each $value in $font-style {
|
26
|
+
.font-#{$value} {
|
27
|
+
font-style: $value;
|
28
|
+
}
|
26
29
|
|
27
|
-
|
30
|
+
$addme: add-to-apply-map(font-#{$value}, "font-style", "#{$value}");
|
31
|
+
}
|
28
32
|
}
|
29
33
|
|
30
|
-
$
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
);
|
34
|
+
$font-weights: (
|
35
|
+
lighter,
|
36
|
+
normal,
|
37
|
+
bold,
|
38
|
+
bolder
|
39
|
+
) !default;
|
36
40
|
|
37
|
-
@
|
38
|
-
|
39
|
-
font
|
40
|
-
|
41
|
+
@if index($components, font-weights) {
|
42
|
+
@each $value in $font-weights {
|
43
|
+
.font-#{$value} {
|
44
|
+
font-weight: $value;
|
45
|
+
}
|
41
46
|
|
42
|
-
|
47
|
+
$addme: add-to-apply-map(font-#{$value}, "font-weight", "#{$value}");
|
48
|
+
}
|
43
49
|
}
|
44
50
|
|
45
|
-
$transform: (
|
51
|
+
$text-transform: (
|
46
52
|
lowercase,
|
47
53
|
uppercase,
|
48
54
|
capitalize
|
49
|
-
);
|
55
|
+
) !default;
|
50
56
|
|
51
|
-
@
|
52
|
-
.text-#{$value} {
|
53
|
-
text-transform: $value;
|
54
|
-
}
|
57
|
+
@if index($components, text-transform) {
|
55
58
|
|
56
|
-
|
59
|
+
@each $value in $text-transform {
|
60
|
+
.text-#{$value} {
|
61
|
+
text-transform: $value;
|
62
|
+
}
|
63
|
+
|
64
|
+
$addme: add-to-apply-map(text-#{$value}, "text-transform", "#{$value}");
|
65
|
+
}
|
57
66
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flake-scss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mitcheljager
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-11-
|
11
|
+
date: 2017-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -58,6 +58,7 @@ files:
|
|
58
58
|
- lib/flake/scss/version.rb
|
59
59
|
- vendor/assets/stylesheets/_flake.scss
|
60
60
|
- vendor/assets/stylesheets/_variables.scss
|
61
|
+
- vendor/assets/stylesheets/animations/_transitions.scss
|
61
62
|
- vendor/assets/stylesheets/background/_colors.scss
|
62
63
|
- vendor/assets/stylesheets/border/_colors.scss
|
63
64
|
- vendor/assets/stylesheets/border/_general.scss
|