Created
May 3, 2015 15:32
-
-
Save una/dce03589b8fc29e03f44 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
<ul class="icons"> | |
<li></li></li> | |
</ul> |
This file contains 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
// ---- | |
// Sass (v3.4.13) | |
// Compass (v1.0.3) | |
// ---- | |
.icons { | |
list-style: none; | |
padding: 0; | |
margin: 30px; | |
//utline: 1px solid teal; | |
li { | |
outline: 1px solid red; // red outline on actual element | |
position: absolute; // absolute positioning for the box shadow elements | |
width: 20px; //width of pixel | |
height: 20px; //height of pixel | |
top: -20px; | |
left: -20px; | |
// box shadow positions the pixels and colors them: | |
box-shadow: 20px 20px 0 hotpink, 40px 40px 0 hotpink, 60px 60px hotpink; | |
} | |
} |
This file contains 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
.icons { | |
list-style: none; | |
padding: 0; | |
margin: 30px; | |
} | |
.icons li { | |
outline: 1px solid red; | |
position: absolute; | |
width: 20px; | |
height: 20px; | |
top: -20px; | |
left: -20px; | |
box-shadow: 20px 20px 0 hotpink, 40px 40px 0 hotpink, 60px 60px hotpink; | |
} |
This file contains 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
<ul class="icons"> | |
<li></li></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment