A Pen by Mikhail Baranov on CodePen.
Created
May 21, 2014 08:50
-
-
Save h4/cb1c44948e6985c47e60 to your computer and use it in GitHub Desktop.
A Pen by Mikhail Baranov.
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="dick"></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
.dick { | |
position: relative; | |
width: 100px; | |
height: 300px; | |
margin: 0 100px; | |
background: #FCC; | |
border-radius: 50px; | |
} | |
.dick::before, | |
.dick::after { | |
content: ''; | |
position: absolute; | |
width: 100px; | |
height: 100px; | |
border-radius: 50%; | |
bottom: -50px; | |
background: #FCC; | |
} | |
.dick::before { | |
left: -50px; | |
} | |
.dick::after { | |
right: -50px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment