Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Created August 14, 2014 13:54
Show Gist options
  • Save pixelchar/7b743a87b203502ddb25 to your computer and use it in GitHub Desktop.
Save pixelchar/7b743a87b203502ddb25 to your computer and use it in GitHub Desktop.
@mixin speech-bubble($size, $background) {
background: $background;
display: inline-block;
padding: $size;
position: relative;
margin-left: $size;
&:before {
content: '';
position: absolute;
left: -$size;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
border-top: ($size / 2) solid transparent;
border-right: $size solid $background;
border-bottom: ($size / 2) solid transparent;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment