Skip to content

Instantly share code, notes, and snippets.

@alex-wilmer
Created May 5, 2014 13:59
Show Gist options
  • Save alex-wilmer/67866929463e00f13701 to your computer and use it in GitHub Desktop.
Save alex-wilmer/67866929463e00f13701 to your computer and use it in GitHub Desktop.
.bubble
{
position: relative;
width: 250px;
height: 280px;
padding: 0px;
background: #FFFFFF;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
border: #D2E2FF solid 9px;
}
.bubble:after
{
content: '';
position: absolute;
border-style: solid;
border-width: 0 39px 40px;
border-color: #FFFFFF transparent;
display: block;
width: 0;
z-index: 1;
top: -40px;
left: 86px;
}
.bubble:before
{
content: '';
position: absolute;
border-style: solid;
border-width: 0 47px 48px;
border-color: #D2E2FF transparent;
display: block;
width: 0;
z-index: 0;
top: -57px;
left: 78px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment