1/**
2 * Copyright (c) 2011 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 {
8  font-family: arial,helvetica;
9  font-size: 10pt;
10  text-align: center;
11  margin-left: auto;
12  margin-right: auto;
13  padding: 10px 30px 20px 30px;
14  width: 800px;
15  border-left: solid 1px #ccc;
16  border-right: solid 1px #ccc;
17}
18#stop {
19  margin-left: 100px;
20}
21#container {
22  text-align: left;
23}
24#instructions {
25  text-align: left;
26}
27.outer {
28  margin: 12px 6px 6px 6px;
29  padding: 6px;
30  border: 1px solid #000;
31}
32.outer.disabled {
33  border: 1px solid #696969;
34}
35.runTestButton {
36  margin: 12px;
37}
38.description {
39  margin: 6px 12px;
40}
41.results {
42  margin: 12px;
43}
44.messages {
45  margin: 12px;
46}
47.error {
48  color: #900;
49}
50.result {
51  margin: 6px;
52  padding: 6px;
53}
54.success {
55  font-weight: bold;
56  color: #090;
57}
58.failure {
59  font-weight: bold;
60  color: #900;
61}
62.disabled {
63  color: #696969 !important;
64}
65