-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
96 lines (88 loc) · 1.63 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* Created by Era Iyer
* May 2020
* style.css file
*/
body {
font-family:"avenir next", Arial, sans-serif;
font-size: 12px;
color: #696969; ;
}
.state {
fill: white;
stroke: #fff;
cursor: pointer;
}
.label {
pointer-events: none;
}
p{
text-align: center;
}
#title{
font-size: 16px;
}
#subtitle{
font-size: 12px;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 50px; /*Location of the box */
padding-bottom: 50px;
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
/* overflow: auto; Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
background-color: #fefefe;
/* margin: auto; */
/* padding-right: 20px; */
/* margin-left: 20px;
margin-right: 20px; */
margin-left: 10%;
border: 1px solid #888;
width: 80%;
height: 75%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 25px;
font-weight: bold;
padding: 10px;
}
#graphTitle{
padding-top: 10px;
text-align: center;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
/*center this, don't use padding left*/
#graphModal {
display: block;
margin-left: auto;
margin-right: auto;
}
div.tooltip {
position: absolute;
text-align: center;
width: 65px;
height: 65px;
padding: 3px;
font: 11px sans-serif;
background: lightsteelblue;
border: 0px;
border-radius: 8px;
pointer-events: none;
}