blob: ee23a5cb8d6017e302d0abc141708b33cf733c7f (
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
81
82
83
84
85
|
/* Copyright 2014 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 {
margin: 0
}
p {
white-space: pre-wrap;
}
label {
display: block;
}
h1 {
margin: 1%;
}
div.entity-div {
-webkit-box-shadow: 0 0 20px 2px #aaa;
box-shadow: 0 0 20px 2px #aaa;
display: inline-block;
margin: 10px 5px;
overflow: hidden;
padding: 10px;
vertical-align: top;
}
#nfc-adapter-info {
width: 165px;
}
#ndef-record-form {
width: 300px;
}
#nfc-tag-info,
#nfc-peer-info {
width: 270px;
word-wrap: break-word;
}
#ndef-record-form input {
width: 99%;
}
.parameters-table td {
padding: 0 10px 10px 0;
}
.transition-in {
-webkit-transition: opacity 250ms ease-in-out;
opacity: 1;
transition: opacity 250ms ease-in-out;
}
.transition-out {
-webkit-transition: opacity 250ms ease-in-out;
opacity: 0.25;
transition: opacity 250ms ease-in-out;
}
hr {
background: #888;
border: 0;
border-bottom: 1px dashed #ccc;
}
div.record-key-value-div {
margin-bottom: 10px;
}
span.record-key-span,
div.record-key-div {
font-style: italic;
font-weight: bold;
margin-right: 10px;
}
.record-value-div > * {
margin: 10px;
}
|