OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright (c) 2013 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 | |
6 body { | |
7 font-family: Arial, Helvetica, sans-serif; | |
xiyuan
2014/01/23 21:20:55
Usually we don't set font here and rely on <body
armansito
2014/01/24 20:50:33
Done.
| |
8 margin: 0 | |
9 } | |
10 | |
11 p { | |
12 white-space: pre-wrap; | |
13 } | |
14 | |
15 label { | |
16 display: block; | |
17 } | |
18 | |
19 h1 { | |
20 margin: 1%; | |
21 } | |
22 | |
23 div.entity-div { | |
24 -webkit-box-shadow: 0 0 20px 2px #aaa; | |
25 box-shadow: 0 0 20px 2px #aaa; | |
26 display: inline-block; | |
27 margin: 10px 5px; | |
28 overflow: hidden; | |
29 padding: 10px; | |
30 vertical-align: top; | |
31 } | |
32 | |
33 #nfc-adapter-info { | |
34 width: 165px; | |
35 } | |
36 | |
37 #ndef-record-form { | |
38 width: 300px; | |
39 } | |
40 | |
41 #nfc-tag-info, | |
42 #nfc-peer-info { | |
43 width: 235px; | |
44 word-wrap: break-word; | |
45 } | |
46 | |
47 #ndef-record-form input { | |
48 width: 99%; | |
49 } | |
50 | |
51 .parameters-table td { | |
52 padding: 0 10px 10px 0; | |
53 } | |
54 | |
55 .transition-in { | |
56 -webkit-transition: opacity 250ms ease-in-out; | |
57 opacity: 1; | |
58 transition: opacity 250ms ease-in-out; | |
59 } | |
60 | |
61 .transition-out { | |
62 -webkit-transition: opacity 250ms ease-in-out; | |
63 opacity: 0.25; | |
64 transition: opacity 250ms ease-in-out; | |
65 } | |
66 | |
67 hr { | |
68 background: #888; | |
69 border: 0; | |
70 border-bottom: 1px dashed #ccc; | |
71 } | |
72 | |
73 div.record-key-value-div { | |
74 margin-bottom: 10px; | |
75 } | |
76 | |
77 span.record-key-span, | |
78 div.record-key-div { | |
79 font-style: italic; | |
80 font-weight: bold; | |
81 margin-right: 10px; | |
82 } | |
83 | |
84 .record-value-div > * { | |
85 margin: 10px; | |
86 } | |
OLD | NEW |