Skip to content

Commit

Permalink
Update speech-bubble.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Monredo authored Jun 11, 2022
1 parent f6bad08 commit 652c2f8
Showing 1 changed file with 41 additions and 4 deletions.
45 changes: 41 additions & 4 deletions speech-bubble.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
@import url(//db.onlinewebfonts.com/c/2f407d03c34861737fe4b85ab35eb729?family=Cera+Pro);

@font-face {font-family: "Cera Pro"; src: url("//db.onlinewebfonts.com/t/2f407d03c34861737fe4b85ab35eb729.eot"); src: url("//db.onlinewebfonts.com/t/2f407d03c34861737fe4b85ab35eb729.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/2f407d03c34861737fe4b85ab35eb729.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/2f407d03c34861737fe4b85ab35eb729.woff") format("woff"), url("//db.onlinewebfonts.com/t/2f407d03c34861737fe4b85ab35eb729.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/2f407d03c34861737fe4b85ab35eb729.svg#Cera Pro") format("svg"); }

@import url(//db.onlinewebfonts.com/c/98b78079f5ee4295c40260785b4e4fbf?family=Cera+Pro);

@font-face {font-family: "Cera Pro Bold"; src: url("//db.onlinewebfonts.com/t/98b78079f5ee4295c40260785b4e4fbf.eot"); src: url("//db.onlinewebfonts.com/t/98b78079f5ee4295c40260785b4e4fbf.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/98b78079f5ee4295c40260785b4e4fbf.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/98b78079f5ee4295c40260785b4e4fbf.woff") format("woff"), url("//db.onlinewebfonts.com/t/98b78079f5ee4295c40260785b4e4fbf.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/98b78079f5ee4295c40260785b4e4fbf.svg#Cera Pro") format("svg"); }

.speech-bubble {
Expand Down Expand Up @@ -46,3 +42,44 @@
margin-left: -18px;
display: block;
}

.speech-bubble {
position: relative;
background: #ffffff;
color: #000000;
font-family: 'Cera Pro', sans-serif;
font-size: 20px;
line-height: 114px;
text-align: center;
width: 250px;
height: 120px;
border-radius: 10px;
padding: 0px;
border: #000000 solid 1px;
}
.speech-bubble:after {
content: '';
position: absolute;
display: block;
width: 0;
z-index: 1;
border-style: solid;
border-color: #ffffff transparent;
border-width: 23px 17px 0;
bottom: -23px;
left: 50%;
margin-left: -17px;
}
.speech-bubble:before {
content: '';
position: absolute;
width: 0;
z-index: 0;
border-style: solid;
border-color: #000000 transparent;
border-width: 24px 18px 0;
bottom: -24.5px;
left: 50%;
margin-left: -18px;
display: block;
}

0 comments on commit 652c2f8

Please sign in to comment.