forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.css
56 lines (54 loc) · 818 Bytes
/
info.css
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
/**
* Copyright (c) 2011 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: 14px Arial;
}
h1 {
margin: 30px 0 5px 0;
padding: 0;
}
code {
padding: 0;
margin: 5px 0;
display: block;
}
table {
border-collapse: collapse;
width: 100%;
margin: 15px 0;
}
td, th {
padding: 4px;
}
th {
text-align: left;
width: 130px;
}
tr {
display: none;
}
tr.rendered {
display: block;
}
tr.rendered:nth-child(odd) {
background: #eee;
}
#thumbnail {
position: fixed;
right: 20px;
top: 20px;
-webkit-box-shadow: 1px 1px 6px #000;
border: 4px solid #fff;
background: #fff;
}
#loader {
font: 30px Arial;
text-align: center;
padding: 100px;
}
#exif, #output {
display: none;
}