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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04ce98b2baef17034fda03a13c826d8aea219f61eef608a14a7b46794031f98e
4
- data.tar.gz: 63894f00216b718e1f96f8e865e046eeb4efccfbf89a83ec88737abcdb10ccf1
3
+ metadata.gz: ce469c4686a62d121ad1ade1373ba405cad83cedf625ae00b526eda771073472
4
+ data.tar.gz: b2198c5a71f6dbf1b3d802582247b1bc62888675dbe3eea394ad35318b2744b1
5
5
  SHA512:
6
- metadata.gz: 2e18a4090af1779e1be09bce1b9a6012ff3a5b69fcd9c2c09257e14f414c990b92b519bfc56fb997c0d06424fa3fbc2bec7b82003a88d416dc9abb9da1216a39
7
- data.tar.gz: cb9c9f386e425fba33880fd481c331b86635803110a1e9d2642439eb2e6c140129978ac8301170728f29ea2d46992d035325fc301b5c861014b600975733b5fb
6
+ metadata.gz: c6e36bbe234a935df14f130fd656665e26851ac13f9527214427a0f3475506875a4814aa757352273f42a13a6f9ea11eff5ea019c2cd8aff243e3d0f89572238
7
+ data.tar.gz: ad312080172289bbdab2a3c286dbcece0a2a06dd8ad63197792bbf29c776dcdeebffc52ac2299db7522dc49153ac4553bdbaa4c21bf000aeb2ceaf7a7c8536dd
data/Example.html CHANGED
@@ -11,6 +11,7 @@
11
11
  <h4>Heading</h4>
12
12
  <h5>Heading</h5>
13
13
  <h6>Heading</h6>
14
+ <h6 class="hdg hdg--divider"><span>Divider</span></h6>
14
15
 
15
16
 
16
17
  <button class="btn btn--primary">Button Primary</button>
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
+ }
@@ -5,4 +5,5 @@
5
5
  @import "sass-zero/utilities/pull";
6
6
  @import "sass-zero/utilities/push";
7
7
  @import "sass-zero/utilities/text";
8
+ @import "sass-zero/utilities/list";
8
9
  @import "sass-zero/utilities/unpad";
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "0.0.30"
3
+ VERSION = "0.0.31"
4
4
  end
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-zero",
3
- "version": "0.0.30",
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.30
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-06 00:00:00.000000000 Z
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