Skip to content

Instantly share code, notes, and snippets.

@dimeloper
Created February 6, 2019 21:52
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dimeloper/9bb13f4406291f26227fe416776fd589 to your computer and use it in GitHub Desktop.
Save dimeloper/9bb13f4406291f26227fe416776fd589 to your computer and use it in GitHub Desktop.
.heart {
background-color: red;
display: inline-block;
height: 50px;
margin: 0 10px;
position: relative;
top: 0;
transform: rotate(-45deg);
position: absolute;
left: 45%; top: 45%;
width: 50px;
}
.heart:before,
.heart:after {
content: "";
background-color: red;
border-radius: 50%;
height: 50px;
position: absolute;
width: 50px;
}
.heart:before {
top: -25px;
left: 0;
}
.heart:after {
left: 25px;
top: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment