-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (58 loc) · 894 Bytes
/
style.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
* {
padding: 0;
margin: 0;
}
#wrapper {
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100vw;
font-family: 'Open Sans';
}
h1 {
font-weight: 400;
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
h2 {
font-weight: 400;
font-size: 1rem;
margin-bottom: 1rem;
}
#container {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.tile-text {
font-family: 'Open Sans';
fill: white;
font-size: 9px;
pointer-events: none;
}
#tooltip {
padding: 0.5rem;
position: absolute;
left: 0px;
top: 0px;
background-color: rgba(0, 0, 0, 0.699);
color: white;
opacity: 0;
pointer-events: none;
font-size: 0.8rem;
white-space: nowrap;
}
#tooltip.visible {
opacity: 1;
}
path,
line {
opacity: 0;
}
#desc {
font-size: 0.9rem;
}