-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathguide.css
68 lines (68 loc) · 1.44 KB
/
guide.css
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
.guideMask {
background-color: #000;
position: absolute;
width: 100%;
left: 0px;
top: 0px;
opacity: 0;
}
.guideBubble {
position: absolute;
width: 250px;
background-color: #fff;
padding: 10px;
border-radius: 5px;
box-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.guideBubble .intro {
padding-bottom: 10px;
margin-left: 20px;
}
.guideBubble .step {
position: absolute;
left: 5px;
text-align: center;
font-weight: bold;
top: 8px;
background-color: #BBB;
color: #fff;
width: 20px;
height: 20px;
border-radius: 10px;
line-height: 20px;
}
.guideBubble-arrow {
border: 5px solid white;
content:'';
position: absolute;
}
.guideBubble-arrow.top {
top: -10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:white;
border-left-color:transparent;
}
.guideBubble-arrow.right {
right: -10px;
top: 10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:white;
}
.guideBubble-arrow.bottom {
bottom: -10px;
border-top-color:white;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:transparent;
}
.guideBubble-arrow.left {
left: -10px;
top: 10px;
border-top-color:transparent;
border-right-color:white;
border-bottom-color:transparent;
border-left-color:transparent;
}