-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
57 lines (51 loc) · 1.15 KB
/
App.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
body {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
display: flex;
flex-direction:column;
gap: 20px;
align-items: center;
justify-content: center;
background-color: rgb(156, 27, 66);
}
.tile:hover {
opacity: 1;
}
.tile-text, .legend-text {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
pointer-events: none;
}
#tooltip {
width: auto;
height: auto;
background-color: rgb(151, 15, 94);
color: white;
transition: opacity 0.1s visibility 0.1s background-color 0.1s;
position: fixed;
padding: 10px;
opacity: 0;
visibility: hidden;
border-radius: 20px;
font-size: 18px;
text-align: center;
}
.container {
background-color: #eb9e9e;
padding: 10px;
display: flex;
flex-direction:column;
align-items: center;
justify-content: center;
box-shadow: 4px 4px 10px rgb(100, 18, 36), -4px -4px 10px rgb(100, 18, 36);
}
#title {
margin: 0;
padding: 5px;
font-weight: normal;
font-size: 35px;
}
#description {
margin: 0;
padding: 5px;
font-weight: normal;
font-size: 18px;
}