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