-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (59 loc) · 1.27 KB
/
styles.css
File metadata and controls
72 lines (59 loc) · 1.27 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
/* Page Styles */
@import url(http://fonts.googleapis.com/css?family=Noto+Sans:400,700);
body {
background-color: #95C5DE;
text-align: center;
font-family: "Noto Sans", "Arial", sans;
}
h1 { font-size: 20pt; }
h3 { font-size: 12pt; }
.graphwrapper {
/* This combination seems to work well */
width: 75%;
padding-bottom: 50%;
position: relative;
margin: 0 auto;
}
#depthgraph {
position: absolute;
top: 0; bottom: 0; left: 0; right: 0;
background-color: white;
box-shadow: white 0 0 50px;
}
#currentdepth {
font-size: 40pt;
font-weight: bold;
}
#currentdatelabel {
font-size: 9pt;
}
#currentdepth, #currentdatelabel {
text-align: center;
}
.axisLabel {
position: absolute;
text-align: center;
font-size: 12px;
}
.axisLabel .yaxisLabel {
top: 50%;
left: 2px;
transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
transform-origin: 0 0;
-o-transform-origin: 0 0;
-ms-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
}
.axisLabel xaxisLabel {
bottom: 2px;
left: 50%;
}
footer {
font-size: smaller;
margin-top: 1em;
}