-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtooltip.css
More file actions
33 lines (28 loc) · 727 Bytes
/
tooltip.css
File metadata and controls
33 lines (28 loc) · 727 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic&family=Mukta:wght@400;500&family=Noto+Sans:wght@400;500&display=swap');
#trans-tooltip {
position: absolute;
z-index: 2147483647;
color: #fff;
font-family: system-ui;
font-size: 13px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 15px -3px;
pointer-events: none;
opacity: 0;
background: rgb(30 43 64);
padding: 8px 12px;
border-radius: 8px;
transition: opacity 0.2s;
}
#trans-tooltip.show {
opacity: 1;
}
.font-arabic {
font-family: 'Noto Naskh Arabic', sans-serif;
direction: rtl;
}
.font-hindi {
font-family: 'Mukta', sans-serif;
}
.font-latin {
font-family: 'Noto Sans', sans-serif;
}