-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (56 loc) · 1.91 KB
/
style.css
File metadata and controls
65 lines (56 loc) · 1.91 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
* { font-family: sans-serif; }
html.gradient {
height: 100%;
background: linear-gradient(#CDCDCD, #F0F0F6 80%) no-repeat;
}
body { font-size: 10pt; }
td:first-child { text-align: right; }
h1 { font-size: 125%; padding: 1em; }
h1, h2, h3, p { margin: 0.5em; }
h2 { font-size: 113%; padding-top: 1em; }
h3 { font-size: 106%; background-color: #E6EEEE }
.ambig { font-weight: bold; }
h2 img { vertical-align: text-bottom; }
table { background-color: #CDCDCD; margin: 0.5em 0; }
thead th { background-color: #E6EEEE; border: 1px solid #FFF; padding: 4px; }
tbody th { text-align: right; }
tbody td, tbody th { color: #3D3D3D; padding: 4px; background-color: #FFF; }
tbody tr:nth-child(odd) td, tbody tr:nth-child(odd) th { background-color: #F0F0F6; }
.pub_report td:first-child { text-align: left; }
.pub_report td { text-align: center; }
.features td:first-child { text-align: left; }
.features td { text-align: right; }
ul { margin-top: .5em; }
.chart-container {
box-sizing: border-box;
width: 900px;
height: 550px;
padding: 20px 15px 15px 15px;
margin: 15px auto 30px auto;
border: 1px solid #ddd;
background: #fff;
background: linear-gradient(#f6f6f6 0, #fff 50px);
background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
box-shadow: 0 3px 10px rgba(0,0,0,0.15);
-o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
-ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.chart-placeholder {
width: 100%;
height: 100%;
font-size: 14px;
line-height: 1.2em;
}
#tooltip {
position: absolute;
display: none;
border: 1px solid #fdd;
padding: 2px;
background-color: #fee;
opacity: 0.80;
}