-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.css
More file actions
57 lines (49 loc) · 1.08 KB
/
index.css
File metadata and controls
57 lines (49 loc) · 1.08 KB
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
.page-heading {
text-align: center;
}
.main-view {
text-align: center;
width: 95vw;
max-width: 95vw !important;
}
#demographics-svg {
width: 43.5vw;
height: 60vh;
}
.image-button {
width: 15px; /* Set a width for the button */
height: 15px; /* Set a height for the button */
background-color: white;
background-size: cover; /* Ensure the background image covers the button */
border: none; /* Remove border for a cleaner look */
cursor: pointer;
}
#leftButton {
background-image: url('img/left-arrow.png');
}
#rightButton {
background-image: url('img/right-arrow.png');
}
div.pie-tooltip {
position: absolute;
text-align: center;
width: 125px;
height: 55px;
padding: 10px;
font: 17px sans-serif;
font-weight: bolder;
background: white;
border-width: 3px;
border-radius: 5px;
border-style: solid;
border-color: black;
pointer-events: none;
}
.startLine, .endLine {
stroke: blue;
stroke-width: 4;
cursor: grab;
}
.startLine.dragging, .endLine.dragging {
cursor: grabbing;
}