tips.css
1.26 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
.m-tips {
padding: 12px 20px;
border: 1px solid #cad6e3;
background-color: #e4f4fe;
color: #333;
font-size: 14px;
text-align: left;
}
.m-tips.orange {
color: #FF6600;
border: 1px solid #FF6600;
background: #fff8f3;
}
[data-tips]:hover .tips {
display: block;
}
[data-tips] .tips {
display: none;
position: absolute;
max-width: 200px;
padding: 5px 10px;
line-height: 1.7;
font-size: 12px;
border: 1px solid #ddd;
background-color: #FFF;
margin: -6px 0 0 24px;
}
[data-tips] .tips:before,
[data-tips] .tips:after {
content: '';
top: 6px;
left: -10px;
position: absolute;
height: 0;
width: 0;
overflow: hidden;
border: 5px solid #ddd;
border-color: transparent #ddd transparent transparent;
}
[data-tips] .tips:after {
top: 7px;
left: -8px;
border: 4px solid #FFF;
border-color: transparent #FFF transparent transparent;
}
[data-tips=right] .tips {
margin: -6px 0 0 24px;
}
[data-tips=top] .tips {
margin: -40px 0 0 -7px;
}
[data-tips=top] .tips:before,
[data-tips=top] .tips:after {
top: auto;
left: 8px;
bottom: -10px;
right: auto;
border-color: #ddd transparent transparent transparent;
}
[data-tips=top] .tips:after {
left: 9px;
bottom: -8px;
border-color: #FFF transparent transparent transparent;
}