Skip to content

Instantly share code, notes, and snippets.

@una
Last active August 29, 2015 14:20
Show Gist options
  • Save una/0b58be44ea6d6b689c27 to your computer and use it in GitHub Desktop.
Save una/0b58be44ea6d6b689c27 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<ul class="icons">
<li></li>
</ul>
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
.icons {
list-style: none;
padding: 0;
margin: 30px;
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;
}
}
.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;
}
<ul class="icons">
<li></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment