34 lines
708 B
SCSS
34 lines
708 B
SCSS
body {
|
|
font-family: 'PT Sans', sans-serif;
|
|
min-height: 740px;
|
|
|
|
@include radial-gradient(rgb(255, 255, 255), rgba(156, 165, 33, 0.07));
|
|
}
|
|
|
|
|
|
//do some thought bubble's, general layout
|
|
$bubblecolor: mui-color('orange', '200');
|
|
$bubblefont: 'Architects Daughter', cursive;
|
|
|
|
.bubble {
|
|
padding: 20px;
|
|
background: $bubblecolor;
|
|
-webkit-border-radius: 19px;
|
|
-moz-border-radius: 19px;
|
|
border-radius: 19px;
|
|
font-family: $bubblefont;
|
|
}
|
|
|
|
.bubble:after
|
|
{
|
|
content: '';
|
|
position: absolute;
|
|
border-style: solid;
|
|
border-width: 15px 15px 15px 0;
|
|
border-color: transparent $bubblecolor;
|
|
display: block;
|
|
width: 0;
|
|
z-index: 1;
|
|
left: -15px;
|
|
top: 60px;
|
|
} |