Skip to content

Instantly share code, notes, and snippets.

@JonCatmull
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonCatmull/c5a65acc6f78467f7340 to your computer and use it in GitHub Desktop.
Save JonCatmull/c5a65acc6f78467f7340 to your computer and use it in GitHub Desktop.
A Pen by Jon Catmull.
@mixin bubblepointer($side,$size: 1,$bottom: 25%,$foreground: inherit,$background: #fff) {
@if $side == 'left' {
z-index: -1;
position: absolute;
height: 0;
padding-bottom: (7%*$size);
width: (13%*$size);
bottom: $bottom;
right: 100%;
background: $foreground;
@include border-bottom-left-radius(100% 60%);
&:before {
content: '';
background: #fff;
position: absolute;
width: 150%;
height: 150%;
right: -17%;
bottom: 50%;
@include transform(rotate(-25deg));
@include border-bottom-left-radius(100% 60%);
}
} @elseif $side == 'right' {
z-index: -1;
position: absolute;
height: 0;
padding-bottom: (7%*$size);
width: (13%*$size);
bottom: $bottom;
left: 100%;
background: $foreground;
@include border-bottom-right-radius(100% 60%);
&:before {
content: '';
background: #fff;
position: absolute;
width: 150%;
height: 150%;
left: -17%;
bottom: 50%;
@include transform(rotate(25deg));
@include border-bottom-right-radius(100% 60%);
}
}
}
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400' rel='stylesheet' type='text/css'>
<div id="quote">
<p>Quote text in here...</p>
<div class="pointer"></div>
</div>
@import "compass/css3", "speechbubblepointer";
* {
box-sizing: border-box;
}
#quote {
color: #fff;
font-size: 24px;
font-family: 'open sans', sans serif;
margin: 200px;
padding: 20px 30px;
width: 400px;
height: 200px;
background: skyblue;
position: relative;
@include border-radius(30px);
.pointer {
@include bubblepointer(right,1.2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment