-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregdb.css
More file actions
57 lines (49 loc) · 917 Bytes
/
regdb.css
File metadata and controls
57 lines (49 loc) · 917 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
49
50
51
52
53
54
55
56
57
body {
--background-color: rgba(0, 0, 0, 0);
--fill: white;
--color: black;
margin: .5rem;
background-color: var(--background-color);
color: var(--color);
}
.dark-mode {
--background-color: rgba(0, 0, 0, .75);
--fill: #404040;
--color: white;
}
main {
max-width: 42rem;
margin: auto;
}
li {
margin: .25rem 0;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 12rem;
background-color: gray;
color: white;
text-align: center;
border-radius: .5rem;
padding: .5rem 0;
position: absolute;
z-index: 1;
top: 100%;
left: 50%;
margin-left: -6rem;
/* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
opacity: 0;
transition: opacity 1s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
#regdb-country {
font-family: monospace;
}