-
Notifications
You must be signed in to change notification settings - Fork 0
/
tooltip.css
40 lines (38 loc) · 883 Bytes
/
tooltip.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
.tooltipNavbar {
position: relative;
display: inline-block;
/* border-bottom: 1px dotted black; */
}
.tooltipNavbar .tooltiptextNavbar {
visibility: hidden;
width: 100px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 3px;
position: absolute;
z-index: 10;
bottom: -82%;
left: 50%;
margin-left: -41px;
opacity: 0;
transition: opacity 0.3s;
font-size: 11px;
letter-spacing: 1px;
font-family: 'Lato', sans-serif;
}
.tooltipNavbar .tooltiptextNavbar::after {
content: "";
position: absolute;
top: -50%;
left: 41%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #555 transparent;
}
.tooltipNavbar:hover .tooltiptextNavbar {
visibility: visible;
opacity: 1;
}