sass-zero 0.0.24 → 0.0.25
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8d82d8f5a9efa27cc99f5d0b2016710b802e511a7bc6f853157ddee5807ab2f
|
4
|
+
data.tar.gz: 259fbda3787a3aab0e6f696bcc14cb7e0d3070bfc7912b3e0a78ced21cd046b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5fff8a4bf9b6c00822412581a3aca1ac6319a740bbbb1a3618d1d5ffe9ace26abf504e4ec3d3d383c4dc2c308149e9df23f8c9582da46909c99041fd38b0fc3
|
7
|
+
data.tar.gz: bfc313037cfacee3d7b9f302a3712560e7cec915e3cb506404f24774613fc4b94489c3200ab29c691d74f93849cceba105af92bce797a1bdfbc743d26a250953
|
@@ -1,6 +1,3 @@
|
|
1
|
-
// ************************************************
|
2
|
-
// Float
|
3
|
-
// ************************************************
|
4
1
|
@mixin clearfix {
|
5
2
|
&::after {
|
6
3
|
display: block;
|
@@ -9,9 +6,6 @@
|
|
9
6
|
}
|
10
7
|
}
|
11
8
|
|
12
|
-
// ************************************************
|
13
|
-
// Word Break
|
14
|
-
// ************************************************
|
15
9
|
@mixin break-normal {
|
16
10
|
word-break: normal;
|
17
11
|
overflow-wrap: normal
|
@@ -23,9 +17,6 @@
|
|
23
17
|
white-space: nowrap;
|
24
18
|
}
|
25
19
|
|
26
|
-
// ************************************************
|
27
|
-
// Font Smoothing
|
28
|
-
// ************************************************
|
29
20
|
@mixin antialiased {
|
30
21
|
-webkit-font-smoothing: antialiased;
|
31
22
|
-moz-osx-font-smoothing: grayscale;
|
@@ -36,9 +27,6 @@
|
|
36
27
|
-moz-osx-font-smoothing: auto;
|
37
28
|
}
|
38
29
|
|
39
|
-
// ************************************************
|
40
|
-
// Container
|
41
|
-
// ************************************************
|
42
30
|
@mixin make-container($padding-x, $max-width) {
|
43
31
|
padding-right: $padding-x;
|
44
32
|
padding-left: $padding-x;
|
@@ -47,10 +35,6 @@
|
|
47
35
|
max-width: $max-width;
|
48
36
|
}
|
49
37
|
|
50
|
-
// *************************************************
|
51
|
-
// Center-align a block level element
|
52
|
-
// *************************************************
|
53
|
-
|
54
38
|
@mixin center-block() {
|
55
39
|
display: block;
|
56
40
|
margin-right: auto;
|
@@ -1,28 +1,30 @@
|
|
1
1
|
@import "sass-zero/variables";
|
2
2
|
@import "sass-zero/mixins";
|
3
3
|
|
4
|
-
.u-position {
|
5
|
-
position:
|
6
|
-
|
7
|
-
&--right {
|
8
|
-
right: 0 !important;
|
9
|
-
}
|
4
|
+
.u-position-context {
|
5
|
+
position: relative !important;
|
6
|
+
}
|
10
7
|
|
11
|
-
|
12
|
-
|
13
|
-
|
8
|
+
.u-position-right {
|
9
|
+
position: absolute !important;
|
10
|
+
right: 0;
|
11
|
+
}
|
14
12
|
|
15
|
-
|
16
|
-
|
17
|
-
|
13
|
+
.u-position-left {
|
14
|
+
position: absolute !important;
|
15
|
+
left: 0;
|
16
|
+
}
|
18
17
|
|
19
|
-
|
20
|
-
|
21
|
-
|
18
|
+
.u-position--bottom-right {
|
19
|
+
position: absolute !important;
|
20
|
+
bottom: 0;
|
21
|
+
right: 0;
|
22
22
|
}
|
23
23
|
|
24
|
-
.u-position-
|
25
|
-
position:
|
24
|
+
.u-position--top-right {
|
25
|
+
position: absolute !important;
|
26
|
+
top: 0;
|
27
|
+
right: 0;
|
26
28
|
}
|
27
29
|
|
28
30
|
.u-clearfix {
|
@@ -25,6 +25,20 @@ $duration-500: 500ms;
|
|
25
25
|
$duration-700: 700ms;
|
26
26
|
$duration-1000: 1000ms;
|
27
27
|
|
28
|
+
// *******************************************************************
|
29
|
+
// Transition Delay
|
30
|
+
// Variables for controlling the delay of CSS transitions.
|
31
|
+
// transition-delay: $delay-75;
|
32
|
+
// *******************************************************************
|
33
|
+
$delay-75: 75ms;
|
34
|
+
$delay-100: 100ms;
|
35
|
+
$delay-150: 150ms;
|
36
|
+
$delay-200: 200ms;
|
37
|
+
$delay-300: 300ms;
|
38
|
+
$delay-500: 500ms;
|
39
|
+
$delay-700: 700ms;
|
40
|
+
$delay-1000: 1000ms;
|
41
|
+
|
28
42
|
// *******************************************************************
|
29
43
|
// Transition Timing Function
|
30
44
|
// Variables for controlling the easing of CSS transitions.
|
data/lib/sass/zero/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "sass-zero",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.25",
|
4
4
|
"description": "A CSS framework for rapid UI development based on tailwindcss, miligram and BEM.",
|
5
5
|
"homepage": "https://github.com/lazaronixon/sass-zero",
|
6
6
|
"repository": "lazaronixon/sass-zero",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-zero
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.25
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lazaronixon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: autoprefixer-rails
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
rubygems_version: 3.
|
87
|
+
rubygems_version: 3.1.2
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: A CSS framework for rapid UI development based on tailwindcss, miligram and
|