Forked from lisacatalano/SassMeister-input-HTML.html
Last active
December 14, 2017 09:03
-
-
Save touhid-rahman/998c6c4629c778746fe00e240132e3f8 to your computer and use it in GitHub Desktop.
SASS List - Rainbow
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
| <div class="color red"></div> | |
| <div class="color orange"></div> | |
| <div class="color yellow"></div> | |
| <div class="color green"></div> | |
| <div class="color blue"></div> | |
| <div class="color indigo"></div> | |
| <div class="color violet"></div> |
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
| $rainbow: red, orange, yellow, green, blue, indigo, violet | |
| .color | |
| width: 100px | |
| height: 200px | |
| float: left | |
| @each $color in $rainbow | |
| .#{$color} | |
| background-color: $color |
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
| .color { | |
| width: 100px; | |
| height: 200px; | |
| float: left; | |
| border: 1px solid black; | |
| } |
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
| <div class="color red"></div> | |
| <div class="color orange"></div> | |
| <div class="color yellow"></div> | |
| <div class="color green"></div> | |
| <div class="color blue"></div> | |
| <div class="color indigo"></div> | |
| <div class="color violet"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment