simpodSass 0.0.6 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 011a06cd69268f3802161a0bcb496268bed133e1
4
- data.tar.gz: 6307555a4c00e25f4055de4d9092206744ca7962
3
+ metadata.gz: 0bed65a121b759c50091144ba1e1219e72aea371
4
+ data.tar.gz: 9f26f42d1188927e5364141ccfd7f85a0441c588
5
5
  SHA512:
6
- metadata.gz: bbcfe56ad9a67d626a286cb7c77175c0c027eddc80c4f114ccae78a8fadbee8b1467e8864656fe8ee0acede37992ce401973a22a3301eeb60679803c00dcb9c5
7
- data.tar.gz: fd34ae5cdb1cde0a8403be9376f0faadbfb50453b88ad7a49a30a5017e888f850fcf4fb21199b05517d2899f194a848943d6b3b4c533582b8f76c039c8244793
6
+ metadata.gz: c57bf3b8fd5269de368e1c7783b8948ba601d158cf24a38415b48d9d84837cefa41b900c8ccdbd10c2d1d30897478b0bcbd6dcc75c1940325338ca6e6b265269
7
+ data.tar.gz: a042b6dea502cf9b392fcccffb5bffb36c3f85aed7ec8a137996f05d0a737f79df09d74f13e63bd402385205d90d260bb549ed4a4a9342a7b7c5acfb785205b5
data/lib/simpodSass.rb CHANGED
@@ -12,6 +12,6 @@ end
12
12
 
13
13
 
14
14
  module SimpodSass
15
- VERSION = "0.0.6"
16
- DATE = "2014-11-02"
15
+ VERSION = "0.0.7"
16
+ DATE = "2014-11-15"
17
17
  end
@@ -0,0 +1,20 @@
1
+ .text-left {
2
+ text-align: left;
3
+ }
4
+
5
+ .text-right {
6
+ text-align: right;
7
+ }
8
+
9
+ .text-center {
10
+ text-align: center;
11
+ }
12
+
13
+ @mixin center-block {
14
+ margin-left: auto !important;
15
+ margin-right: auto !important;
16
+ }
17
+
18
+ .center-block {
19
+ @include center-block;
20
+ }
@@ -42,9 +42,13 @@
42
42
  overflow: auto;
43
43
  }
44
44
 
45
+ .oflowHidden {
46
+ overflow: hidden;
47
+ }
48
+
45
49
  @for $i from 0 through 100 {
46
50
  .bottom#{$i} {
47
- margin-bottom: $i+px;
51
+ margin-bottom: $i+px !important;
48
52
  }
49
53
  }
50
54
 
@@ -54,4 +58,10 @@
54
58
 
55
59
  .pAbs {
56
60
  position: absolute;
61
+ }
62
+
63
+ @for $i from 0 through 100 {
64
+ .fs#{$i} {
65
+ @include font-size($i);
66
+ }
57
67
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simpodSass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Šimon Podlipský
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-02 00:00:00.000000000 Z
11
+ date: 2014-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -47,6 +47,7 @@ extra_rdoc_files: []
47
47
  files:
48
48
  - lib/simpodSass.rb
49
49
  - stylesheets/_simpodSass.scss
50
+ - stylesheets/simpodSass/_bootstrap.scss
50
51
  - stylesheets/simpodSass/_colors.scss
51
52
  - stylesheets/simpodSass/_flex.scss
52
53
  - stylesheets/simpodSass/_font.scss