Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | |
|
Marc Treib
2016/12/09 10:52:11
2016 (also in a few more files)
sfiera
2016/12/09 17:35:28
Grepped for all 2015s, they should be gone! (just
| |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 html { | |
| 6 font-size: 20px; | |
| 7 } | |
| 8 | |
| 9 div.section { | |
| 10 width: 100%; | |
| 11 display: inline-block; | |
| 12 margin-left: auto; | |
| 13 margin-right: auto; | |
| 14 } | |
| 15 | |
| 16 div.section.hidden { | |
| 17 display: none; | |
| 18 } | |
| 19 | |
| 20 h2 { | |
| 21 color: rgb(74, 142, 230); | |
| 22 font-size: 100%; | |
| 23 margin-bottom: 0; | |
| 24 } | |
| 25 | |
| 26 .err { | |
| 27 color: red; | |
| 28 } | |
| 29 | |
| 30 .section-details { | |
| 31 width: 100%; | |
| 32 } | |
| 33 | |
| 34 .section-details th { | |
| 35 background: rgb(239, 243, 255); | |
| 36 } | |
| 37 | |
| 38 .section-details td { | |
| 39 vertical-align: top; | |
| 40 } | |
| 41 | |
| 42 .section-details td.detail { | |
| 43 text-align: right; | |
| 44 width: 1px; | |
| 45 white-space: nowrap; | |
| 46 } | |
| 47 | |
| 48 .section-details td.value input { | |
| 49 width: 100%; | |
| 50 } | |
| 51 | |
| 52 #json-value { | |
| 53 font-size: 75%; | |
| 54 } | |
| OLD | NEW |