-
Notifications
You must be signed in to change notification settings - Fork 105
/
Yassin6up_rare-goose-44.html
64 lines (57 loc) · 1.28 KB
/
Yassin6up_rare-goose-44.html
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
<div class="tooltip-container">
<span class="tooltip">Uiverse.io</span>
<span class="text">Tooltip</span>
</div>
<style>
/* From Uiverse.io by Yassin6up - Tags: simple, material design, tooltip, subscription, 3d, action, black */
/* This is an example, feel free to delete this code */
.tooltip-container {
--background: #22d3ee;
position: relative;
background: var(--background);
cursor: pointer;
transition: all 0.2s;
font-size: 17px;
padding: 0.7em 1.8em;
border-radius: 10px;
color: white;
box-shadow: 0 0 10px var(--background);
}
.tooltip {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
padding: 0.3em 0.6em;
opacity: 0;
pointer-events: none;
transition: all 0.3s;
background: var(--background);
border-radius: 10px;
}
.tooltip::before {
position: absolute;
content: "";
height: 0.6em;
width: 0.6em;
bottom: -0.2em;
left: 50%;
transform: translate(-50%) rotate(45deg);
background: var(--background);
}
.tooltip-container:hover .tooltip {
top: -100%;
opacity: 1;
visibility: visible;
pointer-events: auto;
animation: 1s animated infinite alternate;
}
@keyframes animated {
from {
transform: translate(0) translateY(10px);
}
to {
transform: translate(-100%) translateY(0);
}
}
</style>