-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss3-tooltips.css
More file actions
48 lines (47 loc) · 988 Bytes
/
Copy pathcss3-tooltips.css
File metadata and controls
48 lines (47 loc) · 988 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
40
41
42
43
44
45
46
47
48
/*
* Author: Sebastian Ratajczak
* Homepage: http://wastlspage.de
* Licence: CC BY SA (http://creativecommons.org/licenses/by-sa/4.0/)
*/
*[tooltip] {
position:relative;
}
*[tooltip]:before {
position:absolute;
content:attr(tooltip);
margin-left:9px;
opacity:1;
background: #45484d;
background: linear-gradient(#45484d 0%, #000000 100%);
color:white;
padding:5px;
border-radius:5px;
white-space: nowrap;
box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
top:50%;
left:100%;
height:20px;
margin-top:-10px;
opacity:0;
transition: all 1s;
}
*[tooltip]:hover:before {
opacity:1;
}
*[tooltip]:after {
width: 0;
height: 0;
border-top: 10px solid transparent;
border-right: 10px solid #333;
border-bottom: 10px solid transparent;
position: absolute;
content:"";
top:50%;
left:100%;
margin-top:-5px;
opacity:0;
transition: all 1s;
}
*[tooltip]:hover:after {
opacity:1;
}