Skip to content

Instantly share code, notes, and snippets.

@ahaywood
Created March 23, 2017 15:47
Show Gist options
  • Save ahaywood/f4d125053f686f8b7474de65dd5176d3 to your computer and use it in GitHub Desktop.
Save ahaywood/f4d125053f686f8b7474de65dd5176d3 to your computer and use it in GitHub Desktop.
Jen Chooses Joy - random background position for social media icons
/* 5 is the number of list items and the number within $list */
$list: "0 0", "50px 0", "100px 0", "150px 0", "200px 0";
@for $i from 1 through 5 {
li:nth-child(#{$i}) {
$imgKey: random(5);
$nth: nth($list, $imgKey);
background-position: #{$nth};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment