OLD | NEW |
| (Empty) |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
5 body { | |
6 margin: 0 | |
7 } | |
8 | |
9 p { | |
10 white-space: pre-wrap; | |
11 } | |
12 | |
13 label { | |
14 display: block; | |
15 } | |
16 | |
17 h1 { | |
18 margin: 1%; | |
19 } | |
20 | |
21 div.entity-div { | |
22 box-shadow: 0 0 20px 2px #aaa; | |
23 display: inline-block; | |
24 margin: 10px 5px; | |
25 overflow: hidden; | |
26 padding: 10px; | |
27 vertical-align: top; | |
28 } | |
29 | |
30 #nfc-adapter-info { | |
31 width: 165px; | |
32 } | |
33 | |
34 #ndef-record-form { | |
35 width: 300px; | |
36 } | |
37 | |
38 #nfc-tag-info, | |
39 #nfc-peer-info { | |
40 width: 270px; | |
41 word-wrap: break-word; | |
42 } | |
43 | |
44 #ndef-record-form input { | |
45 width: 99%; | |
46 } | |
47 | |
48 .parameters-table td { | |
49 padding: 0 10px 10px 0; | |
50 } | |
51 | |
52 .transition-in { | |
53 -webkit-transition: opacity 250ms ease-in-out; | |
54 opacity: 1; | |
55 transition: opacity 250ms ease-in-out; | |
56 } | |
57 | |
58 .transition-out { | |
59 -webkit-transition: opacity 250ms ease-in-out; | |
60 opacity: 0.25; | |
61 transition: opacity 250ms ease-in-out; | |
62 } | |
63 | |
64 hr { | |
65 background: #888; | |
66 border: 0; | |
67 border-bottom: 1px dashed #ccc; | |
68 } | |
69 | |
70 div.record-key-value-div { | |
71 margin-bottom: 10px; | |
72 } | |
73 | |
74 span.record-key-span, | |
75 div.record-key-div { | |
76 font-style: italic; | |
77 font-weight: bold; | |
78 margin-right: 10px; | |
79 } | |
80 | |
81 .record-value-div > * { | |
82 margin: 10px; | |
83 } | |
OLD | NEW |