Last active
May 28, 2022 09:06
-
-
Save allekok/c6a7728a586b1ee8c810b6f81043eba1 to your computer and use it in GitHub Desktop.
Flower
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> | |
<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> |
Author
allekok
commented
May 26, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment