Chromium Code Reviews| Index: chrome/browser/resources/chromeos/nfc_debug.css |
| diff --git a/chrome/browser/resources/chromeos/nfc_debug.css b/chrome/browser/resources/chromeos/nfc_debug.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0e48e6bceb463f3caf14c3b935d52da94c1eef95 |
| --- /dev/null |
| +++ b/chrome/browser/resources/chromeos/nfc_debug.css |
| @@ -0,0 +1,86 @@ |
| +/* Copyright (c) 2013 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-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.
|
| + 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: 235px; |
| + 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; |
| +} |