sass-zero 0.0.5 → 0.0.7

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.
@@ -0,0 +1,74 @@
1
+ // *******************************************************************
2
+ // Width
3
+ // Variables for setting the width of an element
4
+ // width: $w-1-2;
5
+ // *******************************************************************
6
+ $w-1-2: 50%;
7
+ $w-1-3: 33.333333%;
8
+ $w-2-3: 66.666667%;
9
+ $w-1-4: 25%;
10
+ $w-2-4: 50%;
11
+ $w-3-4: 75%;
12
+ $w-1-5: 20%;
13
+ $w-2-5: 40%;
14
+ $w-3-5: 60%;
15
+ $w-4-5: 80%;
16
+ $w-1-6: 16.666667%;
17
+ $w-2-6: 33.333333%;
18
+ $w-3-6: 50%;
19
+ $w-4-6: 66.666667%;
20
+ $w-5-6: 83.333333%;
21
+ $w-1-12: 8.333333%;
22
+ $w-2-12: 16.666667%;
23
+ $w-3-12: 25%;
24
+ $w-4-12: 33.333333%;
25
+ $w-5-12: 41.666667%;
26
+ $w-6-12: 50%;
27
+ $w-7-12: 58.333333%;
28
+ $w-8-12: 66.666667%;
29
+ $w-9-12: 75%;
30
+ $w-10-12: 83.333333%;
31
+ $w-11-12: 91.666667%;
32
+
33
+ // *******************************************************************
34
+ // Min-Width
35
+ // Variables for setting the minimum width of an element
36
+ // min-width: $min-w-0;
37
+ // *******************************************************************
38
+ $min-w-0: 0;
39
+ $min-w-full: 100%;
40
+
41
+ // *******************************************************************
42
+ // Max-Width
43
+ // Variables for setting the maximum width of an element
44
+ // max-width: $max-w-xs;
45
+ // *******************************************************************
46
+ $max-w-xs: 20rem;
47
+ $max-w-sm: 24rem;
48
+ $max-w-md: 28rem;
49
+ $max-w-lg: 32rem;
50
+ $max-w-xl: 36rem;
51
+ $max-w-2xl: 42rem;
52
+ $max-w-3xl: 48rem;
53
+ $max-w-4xl: 56rem;
54
+ $max-w-5xl: 64rem;
55
+ $max-w-6xl: 72rem;
56
+ $max-w-full: 100%;
57
+ $max-w-none: none;
58
+
59
+ // *******************************************************************
60
+ // Min-Height
61
+ // Variables for setting the minimum height of an element
62
+ // min-height: $min-h-0;
63
+ // *******************************************************************
64
+ $min-h-0: 0;
65
+ $min-h-full: 100%;
66
+ $min-h-screen: 100vh;
67
+
68
+ // *******************************************************************
69
+ // Max-Height
70
+ // Variables for setting the maximum height of an element
71
+ // max-height: $max-h-full;
72
+ // *******************************************************************
73
+ $max-h-full: 100%;
74
+ $max-h-screen: 100vh;
@@ -0,0 +1,12 @@
1
+ // *******************************************************************
2
+ // Z-Index
3
+ // Variables for controlling the stack order of an element.
4
+ // z-index: $z-0;
5
+ // *******************************************************************
6
+ $z-0: 0;
7
+ $z-10: 10;
8
+ $z-20: 20;
9
+ $z-30: 30;
10
+ $z-40: 40;
11
+ $z-50: 50;
12
+ $z-auto: auto;
@@ -0,0 +1,10 @@
1
+ @import "variables/border";
2
+ @import "variables/breakpoints";
3
+ @import "variables/colors";
4
+ @import "variables/effects";
5
+ @import "variables/flex";
6
+ @import "variables/spacing";
7
+ @import "variables/transition";
8
+ @import "variables/typography";
9
+ @import "variables/width";
10
+ @import "variables/zindex";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lázaro Nixon
@@ -18,7 +18,31 @@ email:
18
18
  executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
- files: []
21
+ files:
22
+ - ".gitignore"
23
+ - Gemfile
24
+ - Gemfile.lock
25
+ - README.md
26
+ - lib/sass/zero.rb
27
+ - lib/sass/zero/version.rb
28
+ - sass-zero.gemspec
29
+ - vendor/assets/stylesheets/sass-zero/base.scss
30
+ - vendor/assets/stylesheets/sass-zero/base/breadboard.scss
31
+ - vendor/assets/stylesheets/sass-zero/base/normalize.css
32
+ - vendor/assets/stylesheets/sass-zero/base/preflight.scss
33
+ - vendor/assets/stylesheets/sass-zero/mixins.scss
34
+ - vendor/assets/stylesheets/sass-zero/variables.scss
35
+ - vendor/assets/stylesheets/sass-zero/variables/border.scss
36
+ - vendor/assets/stylesheets/sass-zero/variables/breakpoints.scss
37
+ - vendor/assets/stylesheets/sass-zero/variables/colors.scss
38
+ - vendor/assets/stylesheets/sass-zero/variables/effects.scss
39
+ - vendor/assets/stylesheets/sass-zero/variables/flex.scss
40
+ - vendor/assets/stylesheets/sass-zero/variables/spacing.scss
41
+ - vendor/assets/stylesheets/sass-zero/variables/transform.scss
42
+ - vendor/assets/stylesheets/sass-zero/variables/transition.scss
43
+ - vendor/assets/stylesheets/sass-zero/variables/typography.scss
44
+ - vendor/assets/stylesheets/sass-zero/variables/width.scss
45
+ - vendor/assets/stylesheets/sass-zero/variables/zindex.scss
22
46
  homepage: http://github.com/lazaronixon/sass-zero
23
47
  licenses:
24
48
  - MIT