Created
October 27, 2014 19:56
-
-
Save jdsteinbach/a0ccd17d2b7b14a0f5d1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.0) | |
| // ---- | |
| @for $i from 10 to 1 { | |
| .el-#{$i} { | |
| z-index: $i; | |
| } | |
| } | |
| @for $i from 1 to 10 { | |
| .el-#{$i} { | |
| z-index: $i; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .el-1 { | |
| z-index: 1; } | |
| .el-2 { | |
| z-index: 2; } | |
| .el-3 { | |
| z-index: 3; } | |
| .el-4 { | |
| z-index: 4; } | |
| .el-5 { | |
| z-index: 5; } | |
| .el-6 { | |
| z-index: 6; } | |
| .el-7 { | |
| z-index: 7; } | |
| .el-8 { | |
| z-index: 8; } | |
| .el-9 { | |
| z-index: 9; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment