sass-zero 0.0.38 → 0.0.39
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/Example.html +7 -7
 - data/app/assets/stylesheets/sass-zero/base/breadboard.scss +3 -12
 - data/app/assets/stylesheets/sass-zero/utilities/text.scss +12 -0
 - data/app/assets/stylesheets/sass-zero/variables/colors.scss +1 -1
 - data/lib/sass/zero/version.rb +1 -1
 - data/package.json +1 -1
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 3fad3bc286fc20abe0b9cdc927e140aeb64783dcc4a63821d2aa7a639b5aee25
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 9331bd31086517f71e6b608422fd13de0895e7a93d8b6c7b8f1c63c227cbfdee
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 92abdda324b6fc82bff7be29bb6d9496bec0e77ce31d66faa8ae88e58a546bc6f58fbc5f79c3afa8c48888055dd9d33d8d28d6e8154cdc18f6bf91b7b7a5d9e3
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: f2af2f664a855e868d9b10dce45eb0fd9402859b3c361d30711a0f5f96ef62f876c2ee7db1ad24b3d1920f975c3daea2308937de0b5ffe72a862bf61c9f0cf0a
         
     | 
    
        data/Example.html
    CHANGED
    
    | 
         @@ -22,7 +22,7 @@ 
     | 
|
| 
       22 
22 
     | 
    
         | 
| 
       23 
23 
     | 
    
         
             
              <hr>
         
     | 
| 
       24 
24 
     | 
    
         | 
| 
       25 
     | 
    
         
            -
              <form>
         
     | 
| 
      
 25 
     | 
    
         
            +
              <form class="push-md--bottom">
         
     | 
| 
       26 
26 
     | 
    
         
             
                <div class="push-md--bottom">
         
     | 
| 
       27 
27 
     | 
    
         
             
                  <label for="nameField">Name</label>
         
     | 
| 
       28 
28 
     | 
    
         
             
                  <input type="text" placeholder="CJ Patoilo" id="nameField" class="input">
         
     | 
| 
         @@ -41,30 +41,30 @@ 
     | 
|
| 
       41 
41 
     | 
    
         
             
                  <div class="push-md--bottom">
         
     | 
| 
       42 
42 
     | 
    
         
             
                    <div>
         
     | 
| 
       43 
43 
     | 
    
         
             
                      <input type="checkbox" name="option1" value="1" class="checkbox" checked>
         
     | 
| 
       44 
     | 
    
         
            -
                      <label for="option1" 
     | 
| 
      
 44 
     | 
    
         
            +
                      <label for="option1">Option 1</label>
         
     | 
| 
       45 
45 
     | 
    
         
             
                    </div>
         
     | 
| 
       46 
46 
     | 
    
         
             
                    <div>
         
     | 
| 
       47 
47 
     | 
    
         
             
                      <input type="checkbox" name="option2" value="2" class="checkbox">
         
     | 
| 
       48 
     | 
    
         
            -
                      <label for="option2" 
     | 
| 
      
 48 
     | 
    
         
            +
                      <label for="option2">Option 2</label>
         
     | 
| 
       49 
49 
     | 
    
         
             
                    </div>
         
     | 
| 
       50 
50 
     | 
    
         
             
                    <div>
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <input type="checkbox" name="option3" value="3" class="checkbox">
         
     | 
| 
       52 
     | 
    
         
            -
                      <label for="option3" 
     | 
| 
      
 52 
     | 
    
         
            +
                      <label for="option3">Option 3</label>
         
     | 
| 
       53 
53 
     | 
    
         
             
                    </div>
         
     | 
| 
       54 
54 
     | 
    
         
             
                  </div>
         
     | 
| 
       55 
55 
     | 
    
         | 
| 
       56 
56 
     | 
    
         
             
                  <div class="push-md--bottom">
         
     | 
| 
       57 
57 
     | 
    
         
             
                    <div>
         
     | 
| 
       58 
58 
     | 
    
         
             
                      <input type="radio" name="radio" value="1" class="radio" checked>
         
     | 
| 
       59 
     | 
    
         
            -
                      <label for="radio" 
     | 
| 
      
 59 
     | 
    
         
            +
                      <label for="radio">Option 1</label>
         
     | 
| 
       60 
60 
     | 
    
         
             
                    </div>
         
     | 
| 
       61 
61 
     | 
    
         
             
                    <div>
         
     | 
| 
       62 
62 
     | 
    
         
             
                      <input type="radio" name="radio" value="2" class="radio">
         
     | 
| 
       63 
     | 
    
         
            -
                      <label for="radio" 
     | 
| 
      
 63 
     | 
    
         
            +
                      <label for="radio">Option 2</label>
         
     | 
| 
       64 
64 
     | 
    
         
             
                    </div>
         
     | 
| 
       65 
65 
     | 
    
         
             
                    <div>
         
     | 
| 
       66 
66 
     | 
    
         
             
                      <input type="radio" name="radio" value="3" class="radio">
         
     | 
| 
       67 
     | 
    
         
            -
                      <label for="radio" 
     | 
| 
      
 67 
     | 
    
         
            +
                      <label for="radio">Option 3</label>
         
     | 
| 
       68 
68 
     | 
    
         
             
                    </div>
         
     | 
| 
       69 
69 
     | 
    
         
             
                  </div>
         
     | 
| 
       70 
70 
     | 
    
         
             
                </div>
         
     | 
| 
         @@ -72,7 +72,7 @@ pre { 
     | 
|
| 
       72 
72 
     | 
    
         
             
            }
         
     | 
| 
       73 
73 
     | 
    
         | 
| 
       74 
74 
     | 
    
         
             
            hr {
         
     | 
| 
       75 
     | 
    
         
            -
              margin: $size- 
     | 
| 
      
 75 
     | 
    
         
            +
              margin: $size-6 $size-0;
         
     | 
| 
       76 
76 
     | 
    
         
             
            }
         
     | 
| 
       77 
77 
     | 
    
         | 
| 
       78 
78 
     | 
    
         
             
            .input {
         
     | 
| 
         @@ -134,20 +134,11 @@ ol { 
     | 
|
| 
       134 
134 
     | 
    
         
             
              list-style: decimal inside;
         
     | 
| 
       135 
135 
     | 
    
         
             
            }
         
     | 
| 
       136 
136 
     | 
    
         | 
| 
       137 
     | 
    
         
            -
            td, th {
         
     | 
| 
       138 
     | 
    
         
            -
              &:first-child { padding-left:  $size-0; }
         
     | 
| 
       139 
     | 
    
         
            -
              &:last-child  { padding-right: $size-0; }
         
     | 
| 
       140 
     | 
    
         
            -
            }
         
     | 
| 
       141 
     | 
    
         
            -
             
     | 
| 
       142 
     | 
    
         
            -
            dt, dd, li {
         
     | 
| 
       143 
     | 
    
         
            -
              &:last-child { margin-bottom: $size-0; }
         
     | 
| 
       144 
     | 
    
         
            -
            }
         
     | 
| 
       145 
     | 
    
         
            -
             
     | 
| 
       146 
137 
     | 
    
         
             
            h1, h2, h3, h4, h5, h6, .hdg {
         
     | 
| 
       147 
138 
     | 
    
         
             
              margin-bottom: $size-2;
         
     | 
| 
       148 
139 
     | 
    
         
             
            }
         
     | 
| 
       149 
140 
     | 
    
         | 
| 
       150 
     | 
    
         
            -
             
     | 
| 
      
 141 
     | 
    
         
            +
            dd {
         
     | 
| 
       151 
142 
     | 
    
         
             
              margin-bottom: $size-2;
         
     | 
| 
       152 
143 
     | 
    
         
             
            }
         
     | 
| 
       153 
144 
     | 
    
         | 
| 
         @@ -156,7 +147,7 @@ fieldset, .input { 
     | 
|
| 
       156 
147 
     | 
    
         
             
            }
         
     | 
| 
       157 
148 
     | 
    
         | 
| 
       158 
149 
     | 
    
         
             
            blockquote, figure, p, pre, table, ul, ol, dl {
         
     | 
| 
       159 
     | 
    
         
            -
              margin-bottom: $size- 
     | 
| 
      
 150 
     | 
    
         
            +
              margin-bottom: $size-4;
         
     | 
| 
       160 
151 
     | 
    
         
             
            }
         
     | 
| 
       161 
152 
     | 
    
         | 
| 
       162 
153 
     | 
    
         
             
            table {
         
     | 
| 
         @@ -2,7 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            // Default color palette
         
     | 
| 
       3 
3 
     | 
    
         
             
            // sass-zero includes a generous palette of great-looking, well-balanced colors that are perfect for prototyping or for kicking off a brand new project.
         
     | 
| 
       4 
4 
     | 
    
         
             
            // *******************************************************************
         
     | 
| 
       5 
     | 
    
         
            -
            $transparent:  
     | 
| 
      
 5 
     | 
    
         
            +
            $transparent: transparent;
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
            $black: #000;
         
     | 
| 
       8 
8 
     | 
    
         
             
            $white: #fff;
         
     | 
    
        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.39",
         
     | 
| 
       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",
         
     |