Last active
April 2, 2022 00:15
-
-
Save wpflames/f8299a70c2c0914c62bbe896f36c76c8 to your computer and use it in GitHub Desktop.
Shadow divider
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 class="h-divider"> | |
| <div class="shadow"></div> | |
| </div> | |
| <style> | |
| .h-divider { | |
| margin: 80px auto 40px; | |
| width: 80%; | |
| position: relative; | |
| } | |
| .h-divider .shadow { | |
| overflow: hidden; | |
| height: 20px; | |
| } | |
| .h-divider .shadow:after { | |
| content: ''; | |
| display: block; | |
| margin: -25px auto 0; | |
| width: 100%; | |
| height: 25px; | |
| border-radius: 125px/12px; | |
| box-shadow: 0 0 8px black; | |
| } | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment