Skip to content

Instantly share code, notes, and snippets.

@qawemlilo
Created June 26, 2019 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qawemlilo/6edd5a4bd386858d21a13620596ce21d to your computer and use it in GitHub Desktop.
Save qawemlilo/6edd5a4bd386858d21a13620596ce21d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #42a5f5;
}
.container {
margin: auto;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 200px;
height: 200px;
}
.round-flower {
position: absolute;
border-radius: 100%;
display: inline-block;
background-color: #fb8c00;
height: 50px;
width: 50px;
box-shadow: 20px 22px #fff176,-20px 22px #fff176,-27px -17px #fff176,0px -35px #fff176,27px -17px #fff176;
margin-bottom: -16px;
margin-left: 40px;
}
</style>
</head>
<body>
<div class="container">
<div class="round-flower"></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment