Last active
August 29, 2015 14:02
-
-
Save socketz/bed4de40d0df06c360dc to your computer and use it in GitHub Desktop.
CSS3 Separator
This file contains 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
.separator1 { | |
border-bottom: 1px solid rgba(255, 255, 255, 0.9); | |
border-radius: 100% 100% 100% 100%; | |
border-top: 1px solid rgba(150, 150, 150, 0.9); | |
box-shadow: 0 2px 10px 0 #444, 0 4px 5px 0 #ccc; | |
display: block; | |
height: 0; | |
margin-bottom: 20px; | |
margin-top: 15px; | |
width: 100%; | |
} | |
.separator2 { | |
border-bottom: 1px solid rgba(255, 255, 255, 0.9); | |
border-radius: 100% 100% 100% 100%; | |
border-top: 1px solid rgba(150, 150, 150, 0.9); | |
box-shadow: 0 2px 6px 0 #999999, 0 3px 4px 0 #F0F0F0; | |
display: block; | |
height: 0; | |
margin: 10px auto 25px; | |
width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment