-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (34 loc) · 748 Bytes
/
style.css
File metadata and controls
39 lines (34 loc) · 748 Bytes
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
.with_arrow:after,
.with_arrow:before {
z-index: 1;
content: '';
display: block;
position: absolute;
width: 0;
height: 0;
border-style: solid;
}
.with_arrow:after {
right: 10px;
top: -16px;
border-color: transparent transparent #fff transparent;
border-width: 10px;
}
.with_arrow:before {
right: 10px;
top: -17px;
border-color: transparent transparent #ECECEC transparent;
border-width: 10px;
}
.with_arrow.top:after {
right: 10px;
top: -4px;
border-color: #fff transparent transparent transparent;
border-width: 10px;
}
.with_arrow.top:before {
right: 10px;
top: -2px;
border-color: #ECECEC transparent transparent transparent;
border-width: 10px;
}