blob: 017f75e9bc658758e11432cdcd820e9e3514d9bf [file] [log] [blame]
jimbobe00f9e2016-05-26 11:18:06 -04001/**
2 * @license Copyright 2016 Google Inc. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17body {
18 font-family: "RobotoDraft", "Roboto", sans-serif;
19 height: 100%;
20 margin: 0;
21 overflow: hidden;
22 padding: 0;
23 width: 100%;
24}
25
26/**
27 * Controls.
28 */
29.controls {
30 position: absolute;
31 right: 0;
32 top: 0;
33}
34
35.controls .dg.main {
36 background-color: black;
37 padding: 0;
38}
39
40.controls select {
41 color: black;
42}
43
44.controls li {
45 box-sizing: border-box;
46 width: 100%;
47}
48
49/**
50 * TimeRange styles.
51 */
52.time-range {
53 background-color: white;
54 border-radius: 2px;
55 bottom: 32px;
56 box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.3);
57 height: 47px;
58 left: 12px;
59 position: absolute;
60 right: 52px;
61}
62
63.time-range .axis text {
64 fill: #666;
65 font-size: 11px;
66}
67
68.time-range .axis line,
69.time-range .axis path {
70 fill: none;
71 stroke: #888;
72 shape-rendering: crispEdges;
73}
74
75.time-range .nub {
76 fill: #bbb;
77 stroke: #888;
78 stroke-width: 1.5px;
79}