-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy path34_bubbles.html
53 lines (49 loc) · 1.09 KB
/
34_bubbles.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE HTML>
<html>
<head>
<style>
head, style {display: block;}
[contenteditable] {-webkit-user-modify: read-write-plaintext-only;}
html, body, head, style {margin: 0; padding: 0;}
style:first-of-type {visibility:hidden;}
style:last-of-type {padding: 0 20px 20px; font-size: 1.5em; white-space: pre; font-family: monospace;}
ol {font-family:Verdana, Geneva, sans-serif; font-size:1.2em}
li {color: black;}
li li {color: green;}
p, pre {font-size: 2em;padding: 0 20px 20px; background-color: #ccc; border-radius: 15px;}
p {}
</style>
<style contenteditable>.thought {
border-radius: 50%;
border: 5px solid blue;
background-color: white;
position:relative;
padding: 40px;
background-color: #fff;
float: left;
}
.thought:before,
.thought:after {
content: '';
border: 5px solid blue;
border-radius: 50%;
position:absolute;
left: 20%;
bottom: -30px;
width: 40px;
height: 40px;
background-color: #fff;
}
.thought:after {
height: 20px;
width: 20px;
bottom: -50px;
left: 12%;
}
</style>
<title>Thought bubble</title>
</head>
<body>
<p class="thought">This is a thought bubble</p>
</body>
</html>