1/*
2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#main-table {
8  border-collapse: collapse;
9  border-width: 0;
10  margin-left: auto;
11  margin-right: auto;
12  table-layout: fixed;
13  width: 1000px;
14}
15
16tr.section-row {
17  border-bottom-width: 2px;
18  border-color: #000;
19  border-left-width: 0;
20  border-right-width: 0;
21  border-style: solid;
22  border-top-width: 2px;
23  width: 100%;
24}
25
26td.title-cell {
27  border-width: 0;
28  text-align: right;
29  vertical-align: top;
30  width: 15%;
31}
32
33p.title-text {
34  font-weight: bold;
35  margin-right: 10px;
36}
37
38td.show-button-cell {
39  border-bottom-width: 0;
40  border-color: #aaa;
41  border-left-width: 1px;
42  border-right-width: 1px;
43  border-style: solid;
44  border-top-width: 0;
45  text-align: center;
46  vertical-align: top;
47  width: 10%;
48}
49
50td.plots-cell {
51  border-width: 0;
52  padding: 10px;
53  text-align: left;
54  width: 75%;
55}
56
57div.section-div {
58  width: 100%;
59}
60
61div.plots-div {
62  width: 100%;
63}
64
65button.show-button {
66  margin: 10px;
67}
68
69button.reload-button {
70  margin-bottom: 10px;
71  margin-top: 10px;
72}
73