-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (44 loc) · 819 Bytes
/
main.css
File metadata and controls
52 lines (44 loc) · 819 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
html, body {
font-family: 'Montserrat', sans-serif;
color: white;
background-color: turquoise;
margin: 0px;
padding: 0px;
width: 100%;
}
header {
margin: 10px;
}
svg{
border: 1px solid black;
}
.chartContainer {
text-align: center;
}
.tooltip {
pointer-events: none;
position: absolute;
display: none;
height: auto;
background-color: #ffffff;
padding: 4px 10px 4px 10px;
border-radius: 4px;
text-align: center;
line-height: 1.3;
color: #5B6770;
box-shadow: 0px 3px 9px rgba(0, 0, 0, .15);
}
#madeBy a {
color: white;
}
#numberOfEntrants {
font-size: .75em;
}
#tournamentName {
font-size: 1.5em;
color: turquoise;
text-shadow: -1px 0 gray, 0 1px gray, 1px 0 gray, 0 -1px gray;
}
#winner {
font-size: .8em;
}