sass-zero 0.0.30 → 0.0.31
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Example.html +1 -0
- data/README.md +1 -0
- data/app/assets/stylesheets/sass-zero/base/breadboard.scss +21 -1
- data/app/assets/stylesheets/sass-zero/utilities/list.scss +17 -0
- data/app/assets/stylesheets/sass-zero/utilities.scss +1 -0
- data/lib/sass/zero/version.rb +1 -1
- data/package.json +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce469c4686a62d121ad1ade1373ba405cad83cedf625ae00b526eda771073472
|
4
|
+
data.tar.gz: b2198c5a71f6dbf1b3d802582247b1bc62888675dbe3eea394ad35318b2744b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6e36bbe234a935df14f130fd656665e26851ac13f9527214427a0f3475506875a4814aa757352273f42a13a6f9ea11eff5ea019c2cd8aff243e3d0f89572238
|
7
|
+
data.tar.gz: ad312080172289bbdab2a3c286dbcece0a2a06dd8ad63197792bbf29c776dcdeebffc52ac2299db7522dc49153ac4553bdbaa4c21bf000aeb2ceaf7a7c8536dd
|
data/Example.html
CHANGED
data/README.md
CHANGED
@@ -58,6 +58,7 @@ Developers should be able to produce your own design, [Refactoring UI](https://r
|
|
58
58
|
- [Layout Utilities](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/layout.scss)
|
59
59
|
- [Flex Utilities](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/flex.scss)
|
60
60
|
- [Position Utilities](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/position.scss)
|
61
|
+
- [List Utilities](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/utilities/list.scss)
|
61
62
|
|
62
63
|
## Installation
|
63
64
|
|
@@ -112,7 +112,6 @@ hr {
|
|
112
112
|
label, legend {
|
113
113
|
display: block;
|
114
114
|
margin-bottom: $size-1;
|
115
|
-
font-weight: $font-bold;
|
116
115
|
}
|
117
116
|
|
118
117
|
.checkbox, .radio {
|
@@ -236,6 +235,27 @@ h6, .hdg--base {
|
|
236
235
|
font-size: $text-base;
|
237
236
|
}
|
238
237
|
|
238
|
+
.hdg--divider {
|
239
|
+
position: relative;
|
240
|
+
z-index: 0;
|
241
|
+
|
242
|
+
> span {
|
243
|
+
background-color: $breadboard-background;
|
244
|
+
padding-right: $size-2;
|
245
|
+
}
|
246
|
+
|
247
|
+
::before {
|
248
|
+
content: '';
|
249
|
+
position: absolute;
|
250
|
+
top: 50%;
|
251
|
+
left: $size-0;
|
252
|
+
right: $size-0;
|
253
|
+
height: $size-px;
|
254
|
+
background: $breadboard-border;
|
255
|
+
z-index: -1;
|
256
|
+
}
|
257
|
+
}
|
258
|
+
|
239
259
|
@media (min-width: $breakpoint-md) {
|
240
260
|
html {
|
241
261
|
color: $breadboard-color;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
@import "sass-zero/variables/spacing";
|
2
|
+
|
3
|
+
.list {
|
4
|
+
&--unindented {
|
5
|
+
padding-left: $size-8;
|
6
|
+
}
|
7
|
+
|
8
|
+
&--unbulleted {
|
9
|
+
list-style: none;
|
10
|
+
}
|
11
|
+
|
12
|
+
&--inline li {
|
13
|
+
margin-bottom: $size-0;
|
14
|
+
margin-right: $size-2;
|
15
|
+
display: inline-block;
|
16
|
+
}
|
17
|
+
}
|
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.31",
|
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.31
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lazaronixon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-05-
|
11
|
+
date: 2020-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: autoprefixer-rails
|
@@ -46,6 +46,7 @@ files:
|
|
46
46
|
- app/assets/stylesheets/sass-zero/utilities/flex.scss
|
47
47
|
- app/assets/stylesheets/sass-zero/utilities/flush.scss
|
48
48
|
- app/assets/stylesheets/sass-zero/utilities/layout.scss
|
49
|
+
- app/assets/stylesheets/sass-zero/utilities/list.scss
|
49
50
|
- app/assets/stylesheets/sass-zero/utilities/position.scss
|
50
51
|
- app/assets/stylesheets/sass-zero/utilities/pull.scss
|
51
52
|
- app/assets/stylesheets/sass-zero/utilities/push.scss
|