-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdxreport.css
More file actions
105 lines (87 loc) · 1.43 KB
/
dxreport.css
File metadata and controls
105 lines (87 loc) · 1.43 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
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
97
98
99
100
101
102
103
104
105
.tooltip {
position: absolute;
width: 40px;
height: 8px;
padding: 4px;
background-color: white;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
pointer-events: none;
}
.tooltip.hidden {
display: none;
}
.tooltip p {
margin: 0;
font-family: sans-serif;
font-size: 10px;
line-height: 10px;
}
.grid .tick {
stroke: lightgrey;
opacity: 0.7;
}
.grid path {
stroke-width: 0;
}
/*Modify Rectangles for tooltip - small overlays over data*/
rect {
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
/*hover function*/
rect:hover {
fill: blue;
}
#drugRect:hover {
fill: red;
}
.axis {
stroke: black;
fill: none;
stroke-width: 0.3 px;
}
* {
font-family: sans-serif;
}
h1, h2, h3 {
color: #222;
}
#header h3 {
margin-bottom: 0;
}
#header p {
margin-top: 5px;
}
#logo {
float: right;
}
#page {
width: 80%;
margin: auto;
}
img {
max-width: 98%;
}
.section {
border-style: solid;
border-width: 1px;
margin: 20px 0;
padding: 0 0 10px 0;
border-color: grey;
}
.section h2 {
font-size: 1.2em;
background-color: gainsboro;
margin-top: 0;
padding: 15px 10px;
}
.section p {
margin: 5px 20px;
}