blob: 92a97699e2e4bce327c549b249a227500e36b9c6 (
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
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
73
74
75
76
77
78
79
80
|
/* Copyright 2016 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. */
html {
font-size: 20px;
}
#info > div {
width: 100%;
}
#info h2 {
color: rgb(74, 142, 230);
font-size: 100%;
margin-bottom: 0.3em;
margin-top: 1em;
}
.section-details {
width: 100%;
}
.section-details > tbody > tr:nth-child(odd) {
background: rgb(239, 243, 255);
}
.section-details .detail,
.section-details .value {
width: 50%;
}
td.title-link {
padding-bottom: 0.5em;
padding-top: 0.5em;
}
.expiry {
color: gray;
font-size: 80%;
}
.date {
white-space: nowrap;
}
.url {
display: inline-block;
font-size: 80%;
word-break: break-all;
}
.snippet-detail {
font-size: 90%;
}
.hidden {
display: none;
}
.detail {
color: gray;
font-weight: normal;
}
.forms {
margin-top: 0.3em;
}
#submit-clear {
margin-bottom: 0.5em;
}
#last-json-text {
border: 1px solid black;
color: gray;
font-size: 90%;
padding: 4px;
word-break: break-all;
}
|