-
Notifications
You must be signed in to change notification settings - Fork 105
/
JhaveLang_strange-wasp-98.html
60 lines (54 loc) · 1.26 KB
/
JhaveLang_strange-wasp-98.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
<div class="tooltip-container">
<span class="tooltip">Uiverse.io</span>
<span class="text">Tooltip</span>
</div>
<style>
/* From Uiverse.io by JhaveLang - Tags: simple, tooltip, animation */
/* This is an example, feel free to delete this code */
.tooltip-container {
--background: linear-gradient(45deg, #22d3ee, #1f9df5);
position: relative;
background: var(--background);
cursor: pointer;
transition: all 0.2s;
font-size: 17px;
padding: 0.7em 1.8em;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
color: #fff;
}
.tooltip {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) scale(0.8);
transform-origin: bottom;
padding: 0.3em 0.6em;
opacity: 0;
pointer-events: none;
transition: all 0.3s;
background: var(--background);
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.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: -45px;
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateX(-50%) scale(1);
}
.tooltip-container:hover {
transform: scale(0.9);
}
</style>