Skip to content

Instantly share code, notes, and snippets.

@h4
Created May 21, 2014 08:50
Show Gist options
  • Save h4/cb1c44948e6985c47e60 to your computer and use it in GitHub Desktop.
Save h4/cb1c44948e6985c47e60 to your computer and use it in GitHub Desktop.
A Pen by Mikhail Baranov.
<div class="dick"></div>
.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