Skip to content

Instantly share code, notes, and snippets.

@allekok
Last active May 28, 2022 09:06
Show Gist options
  • Save allekok/c6a7728a586b1ee8c810b6f81043eba1 to your computer and use it in GitHub Desktop.
Save allekok/c6a7728a586b1ee8c810b6f81043eba1 to your computer and use it in GitHub Desktop.
Flower
<!DOCTYPE HTML>
<html>
<head>
<style>
body {
background: black;
}
#flower {
width: 80px;
height: 80px;
position: absolute;
inset: 0;
margin: auto;
border-radius: 50%;
background: yellow;
box-shadow: 0 60px 0 white,
0 -60px 0 white,
60px 0 0 white,
-60px 0 0 white;
transform: rotate(30deg);
}
</style>
</head>
<body>
<div id="flower"></div>
</body>
</html>
@allekok
Copy link
Author

allekok commented May 26, 2022

2022-05-27-014055_1440x900_scrot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment