Created
July 11, 2017 03:55
-
-
Save jnf/6c93511587c0ffd3f448c297da907437 to your computer and use it in GitHub Desktop.
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
html { font-size: 50px; } | |
$emoji: β, β, π , π, π; | |
ol { | |
list-style-type: none; | |
margin: 1rem; | |
} | |
li { | |
&:before { | |
display: inline-block; | |
margin: 0 0.25rem; | |
} | |
@for $i from 1 through length($emoji) { | |
&:nth-of-type(#{$i}):before { | |
content: "#{nth($emoji, $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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Emoji List!</title> | |
<link rel="stylesheet" href="emoji-list.css"> | |
</head> | |
<body> | |
<ol> | |
<li>Raquel</li> | |
<li>Rosa</li> | |
<li>TJ</li> | |
<li>Maxwell</li> | |
<li>Biscuit</li> | |
</ol> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment