Skip to content

Instantly share code, notes, and snippets.

@ntwcklng
Last active February 29, 2016 13:49
Show Gist options
  • Save ntwcklng/4d3b52c34686cefda06c to your computer and use it in GitHub Desktop.
Save ntwcklng/4d3b52c34686cefda06c to your computer and use it in GitHub Desktop.
Low Challenge 01 Solution
<div class="heart"></div>
.heart {
padding: 50px;
}
.heart:before, .heart:after {
width: 50px;
height: 80px;
background: red;
content: '';
display: block;
position: absolute;
border-radius: 50px 50px 0 0;
}
.heart:before {
transform: translate(22px, 0) rotate(45deg);
}
.heart:after {
transform: rotate(-45deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment