-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (45 loc) · 946 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');
html, body {
margin: 0;
padding: 0;
}
canvas {
display: block;
}
p {
color:rgba(62,104,139,1);
font-family: 'Inter', sans-serif;
font-size: 15px;
font-weight: 400;
padding: 1px 7px 1px 7px;
background:rgba(255,255,255,0.85);
max-width: 140px;
overflow-wrap: break-word;
display: none;
}
.main_text {
color:rgb(50, 50, 50);
transform: translate(-50%, -100%);
display:block;
font-size: 20px;
font-weight: 900;
text-align: center;
max-width: 70px;
}
.branch_text {
color:rgb(50, 50, 50);
transform: translate(-50%, -100%);
display:block;
font-size: 16px;
font-weight: 600;
text-align: center;
max-width: 80px;
}
.hover_text {
color:rgba(62,104,139,1);
transform: translate(10px, -100%);
display:block;
}
.hidden_text {
display: none;
}