Created
May 7, 2021 08:16
-
-
Save abhianair/c1024c951fe903a4513d3d72a1f2fc28 to your computer and use it in GitHub Desktop.
Wave CSS
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
<div id="wave"></div> |
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
#wave { | |
position: relative; | |
height: 70px; | |
width: 100%; | |
background: #e0efe3; | |
} | |
#wave:before { | |
content: ""; | |
display: block; | |
position: absolute; | |
border-radius: 100% 50%; | |
width: 47%; | |
height: 80px; | |
background-color: white; | |
right: -5px; | |
top: 40px; | |
} | |
#wave:after { | |
content: ""; | |
display: block; | |
position: absolute; | |
border-radius: 100% 50%; | |
width: 60%; | |
height: 70px; | |
background-color: #e0efe3; | |
left: 0; | |
top: 27px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment