| OLD | NEW |
| (Empty) | |
| 1 /* Copyright 2015 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 html { |
| 6 font-size: 20px; |
| 7 } |
| 8 |
| 9 #info > div { |
| 10 width: 100%; |
| 11 } |
| 12 |
| 13 #info h2 { |
| 14 color: rgb(74, 142, 230); |
| 15 font-size: 100%; |
| 16 margin-bottom: 0; |
| 17 } |
| 18 |
| 19 #info .err { |
| 20 color: red; |
| 21 } |
| 22 |
| 23 #info .section { |
| 24 display: inline-block; |
| 25 margin-left: auto; |
| 26 margin-right: auto; |
| 27 } |
| 28 |
| 29 #info .section.hidden { |
| 30 display: none; |
| 31 } |
| 32 |
| 33 .section-details { |
| 34 width: 100%; |
| 35 } |
| 36 |
| 37 .section-details .detail, |
| 38 .section-details .value { |
| 39 width: 50%; |
| 40 } |
| 41 |
| 42 .section-details tr:nth-child(odd) { |
| 43 background: rgb(239, 243, 255); |
| 44 } |
| 45 |
| OLD | NEW |