sass-flexi 0.7.alpha → 0.8.alpha

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
- data.tar.gz: b79a8ae1cf85e3acce0e6df2280f9cf3de8fd5f3
4
- metadata.gz: 0bb70824318615eded391ca9fb7bf5a3bd3948ff
3
+ data.tar.gz: df55a5905828dd413432b41c8cc14f60e34f42e9
4
+ metadata.gz: d58f2cba1481609c19b1bebd8d468d5b5ffb667b
5
5
  SHA512:
6
- data.tar.gz: a3eda0f64a664e758c558e4499748b5dae376947b9f06aea97a2b2f4230aa8b3f6791f33681c4539d1736ecd84f005015d4e74d142b3f72ee80534a1be9361b0
7
- metadata.gz: fcf0bb6e3dab99e13061c5f48118a50da7e62fe81167fc519eefa2fbee6b53bcd63def63f644276fe706ecc12496e1e68c186175df24c3b19b7482aa923d99b5
6
+ data.tar.gz: 443da58ee53ef8f01f147f1bcfebee827240e012a9c058876354fcd50ac7522d397812b4885ec4247003535b2016e3071579d3a032a7877fd692dbbdd988338b
7
+ metadata.gz: 9441b194bd75477d07457cd7e2d9e84063f159bc470bbe94ceaab086e65d6517a52f56e78f022b8a7e12cb7a9cfb950e7769e2bb267041079b6a4c6faf634171
@@ -2,4 +2,5 @@
2
2
 
3
3
  @import "bundle/normalize";
4
4
  @import "bundle/grid";
5
- @import "bundle/typography";
5
+ @import "bundle/typography";
6
+ @import "bundle/flexi";
@@ -0,0 +1,9 @@
1
+ @import "icon/var";
2
+ @import "icon/mixin";
3
+ @import "icon/path";
4
+ @import "icon/core";
5
+ @import "icon/extra";
6
+ @import "icon/size";
7
+ @import "icon/color";
8
+ @import "icon/icons";
9
+
@@ -0,0 +1,36 @@
1
+ /* Icon colors
2
+ =================*/
3
+
4
+ .white{
5
+ color: white;
6
+ }
7
+ .blue{
8
+ color: blue;
9
+ }
10
+ .red{
11
+ color: red;
12
+ }
13
+ .orange{
14
+ color: orange;
15
+ }
16
+ .yellow{
17
+ color: yellow;
18
+ }
19
+ .pink{
20
+ color: pink;
21
+ }
22
+ .brown{
23
+ color: black;
24
+ }
25
+ .cyan{
26
+ color: cyan;
27
+ }
28
+ .magenta{
29
+ color: magenta;
30
+ }
31
+ .purple{
32
+ color:purple;
33
+ }
34
+ .green{
35
+ color: green;
36
+ }
@@ -0,0 +1,23 @@
1
+
2
+ /* icon Prototype
3
+ =============*/
4
+
5
+ .#{$prefix}{
6
+ font-family: 'flexi';
7
+ font-style: normal;
8
+ font-weight: normal;
9
+ font-variant: normal;
10
+ line-height: 1;
11
+ text-transform: none;
12
+
13
+ /* Better Font Rendering
14
+ =========== */
15
+ -webkit-font-smoothing: antialiased;
16
+ -moz-osx-font-smoothing: grayscale;
17
+
18
+ margin-right: 5px;
19
+ padding: 8px;
20
+
21
+
22
+
23
+ }
@@ -0,0 +1,37 @@
1
+ /* Icon Link
2
+ =================*/
3
+ .linkbutton{
4
+ background-color: $linkbutton-background-color;
5
+ color: $linkbutton-color;
6
+ @include radius(100%);
7
+
8
+ }
9
+ .linkbutton:hover{
10
+ background-color: darken($linkbutton-background-color, 5%);
11
+ }
12
+
13
+ /* Icon Flipping
14
+ =================*/
15
+
16
+ .flipped-h {
17
+ @include scale(-1,1);
18
+ }
19
+ .flipped-v {
20
+ @include scale(1,-1);
21
+ }
22
+
23
+
24
+ /* Icon Rotating
25
+ =================*/
26
+
27
+ .rotated-right {
28
+ @include rotate(90deg);
29
+ }
30
+
31
+ .rotated-down {
32
+ @include rotate(180deg);
33
+ }
34
+
35
+ .rotated-left {
36
+ @include rotate(-90deg);
37
+ }