blob: fd6ef69ff89fef58c0fd11e68913e78253c7d2ae (
plain)
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
|
/* Copyright 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
body {
font-size: 70%;
margin: 0;
min-width: 45em;
padding: 0.75em;
}
h1 {
color: rgb(74, 142, 230);
font-size: 110%;
font-weight: bold;
letter-spacing: -1px;
margin: 0;
padding: 0;
}
h2 {
border-top: 1px solid rgb(58, 117, 189);
color: rgb(58, 117, 189);
font-size: 110%;
font-weight: normal;
letter-spacing: -1px;
margin: 20px 0 0 -38px;
padding: 0.5em 1em 0.5em 38px;
}
a {
color: black;
}
#json {
display: none;
height: 100px;
width: 100%;
}
|