-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtriangle-comic.css
More file actions
45 lines (37 loc) · 1.03 KB
/
triangle-comic.css
File metadata and controls
45 lines (37 loc) · 1.03 KB
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
/* ========================================================================
== BUBBLE WITH A COMIC TRIANGLE
** ======================================================================== */
/* THE SPEECH BUBBLE
----------------------- */
.right, .left {
border-radius:10px;
margin:1em 0;
}
/* THE TRIANGLE
----------------------- */
/* creates triangle */
.right:after, .left:after {
content:"";
position:absolute;
border-style:solid;
display:block;
width:0;
top:-20px; /* controls vertical position */
white-space:normal;
}
/* Variant : left
------------------------------------------ */
.left:after {
left:-10px; /* value = - border-left-width - border-right-width */
border-width:5px 50px 10px 0;
border-color:transparent var(--bg-color-left);
rotate: 45deg;
}
/* Variant : right
------------------------------------------ */
.right:after {
right:-10px; /* value = - border-left-width - border-right-width */
border-width:10px 0 5px 50px;
border-color:transparent var(--bg-color-right);
rotate: -45deg;
}