magic_stylez 0.0.0.23 → 0.0.0.24

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: f0b925d01680692f374949429519a30937124fc1
4
- data.tar.gz: fb7add816103fc4483954ce28b59a2c4e95750de
3
+ metadata.gz: c7db6c33af231831c9c2506a0242b63b8f1698d2
4
+ data.tar.gz: d4106e6f080a043076f9a88361554e028aa6d954
5
5
  SHA512:
6
- metadata.gz: 0a1f33410062c9f7646dc1ec7a743efa6c7cf4d83c1a99b6e7bbfd87bd9e04993ffb1d38184d8366c697740d0293688a8ba53f8c6ae4083f1b8022e6f655a53c
7
- data.tar.gz: 15bfbe1101b3de6f7c25d4e55796a65a6d57a010c00de578bd348be388e3fc094ed2bd1e0c27d086bc498e54de373e0079fd3b9483ac7de48c3b9add2e90d15a
6
+ metadata.gz: d84899f682f5914cd7189aca6b6a5f1c379dd55bdcae64181fe261c1f334260061a899ee33409e139725c1a6dd1329a55c78316cd5adc662560d74a6b92654f1
7
+ data.tar.gz: f7bd086c761ecc174cef6111d37120c3c5d1ea1f861c3c5198ddaefb5d7f60cd0c4d4967623aa73b03bcbcd438b7684302abda5db941b992ab446ee0a21ecbb5
@@ -1,3 +1,3 @@
1
1
  module MagicStylez
2
- VERSION = "0.0.0.23"
2
+ VERSION = "0.0.0.24"
3
3
  end
@@ -14,8 +14,6 @@ html, body, #body {
14
14
  & > * {
15
15
  display: block;
16
16
  position: relative;
17
-
18
-
19
17
  }
20
18
  }
21
19
  }
@@ -38,7 +36,7 @@ html, body, #body {
38
36
  }
39
37
 
40
38
 
41
- .inline_table, .newsfeed {
39
+ .inline_table {
42
40
  display: table; position: relative;
43
41
  padding: 0; margin: 0;
44
42
  width: 100%;
@@ -48,8 +46,9 @@ html, body, #body {
48
46
  &.top { vertical-align: top; }
49
47
  &.middled { vertical-align: middle; }
50
48
  &.bottom { vertical-align: bottom; }
51
- &.aside {
52
- width: 220px;
49
+ &.aside { width: 220px; }
50
+ @for $i from 1 through 12 {
51
+ &.col-#{$i} { width: percentage(1 / 12 * $i); }
53
52
  }
54
53
  }
55
54
  &.grid > * {
@@ -68,7 +67,7 @@ html, body, #body {
68
67
  @include responsiveStep-sm {
69
68
  .fullpage-table {
70
69
  height: 100%;
71
- max-height: 800px;
70
+ &.max-size { max-height: 800px; }
72
71
  display: table;
73
72
  top: 0; left: 0;
74
73
  // z-index: 1;
@@ -77,17 +76,10 @@ html, body, #body {
77
76
  & > * {
78
77
  display: table-cell;
79
78
  vertical-align: middle;
80
- // &.banner-box.responsive-hero > .corset { padding-bottom: 100px; }
81
- .banner-footer { position: absolute; bottom: 0; left: 0; right: 0; }
82
- }
83
- & > .table-footer {
84
- height: 50px; line-height: 50px; background-color: #fff;
85
- & > .corset { max-height: 50px; overflow: hidden;}
86
79
  }
87
80
  &.top, &.top > * { vertical-align: top; }
88
81
  &.middle, &.middle > * { vertical-align: middle; }
89
82
  &.bottom, &.bottom > * { vertical-align: bottom; }
90
-
91
83
  }
92
84
  .fill { height: 100%; }
93
85
  }
@@ -113,9 +105,17 @@ html, body, #body {
113
105
  & > * {
114
106
  display: table-cell;
115
107
  border-collapse: separate;
116
- &.feature-pic {
117
- width: 140px;
118
- }
108
+ &.aside { width: 220px; }
109
+ &.picture { width: 150px; }
110
+ &.ten { width: 10%; }
111
+ &.twenty { width: 20%; }
112
+ &.thirty { width: 30%; }
113
+ &.fourty { width: 40%; }
114
+ &.fivty { width: 50%; }
115
+ &.sixty { width: 60%; }
116
+ &.seventy { width: 70%; }
117
+ &.eighty { width: 80%; }
118
+ &.ninety { width: 90%; }
119
119
  @for $i from 1 through 12 {
120
120
  &.col-#{$i} { width: percentage(1 / 12 * $i); }
121
121
  }
@@ -125,6 +125,7 @@ html, body, #body {
125
125
  &:first-child { padding-left: 0; }
126
126
  &:last-child { padding-right: 0; }
127
127
  }
128
+ &.middled > * { vertical-align: middle; }
128
129
  }
129
130
 
130
131
  .fixed-table {
@@ -142,20 +143,12 @@ html, body, #body {
142
143
  @include responsiveStep-md {
143
144
  .fixed-table {
144
145
  &.boxed { max-width: 970px; }
145
- & > * {
146
- // .header-text-home { padding: 0; }
147
- .img-ipad-home { margin: 0 10%; }
148
- }
149
146
  }
150
147
  }
151
148
 
152
149
  @include responsiveStep-lg {
153
150
  .fixed-table {
154
151
  &.boxed { max-width: 1170px; }
155
- // & > * {
156
- // .header-text-home { padding: 0; }
157
- // .img-ipad-home { margin: 0 20%; }
158
- // }
159
152
  }
160
153
  }
161
154
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: magic_stylez
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.23
4
+ version: 0.0.0.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Torsten Wetzel