| OLD | NEW |
| (Empty) | |
| 1 /* Copyright 2016 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.3em; |
| 17 margin-top: 1em; |
| 18 } |
| 19 |
| 20 #info .section { |
| 21 display: inline-block; |
| 22 margin-left: auto; |
| 23 margin-right: auto; |
| 24 } |
| 25 |
| 26 .section-details { |
| 27 width: 100%; |
| 28 } |
| 29 |
| 30 .section-details .detail, |
| 31 .section-details .value { |
| 32 width: 50%; |
| 33 } |
| 34 |
| 35 td.title-link { |
| 36 padding-bottom: 0.5em; |
| 37 padding-top: 0.5em; |
| 38 } |
| 39 |
| 40 .expiry { |
| 41 color: gray; |
| 42 font-size: 80%; |
| 43 } |
| 44 |
| 45 .date { |
| 46 white-space: nowrap; |
| 47 } |
| 48 |
| 49 .url { |
| 50 display: inline-block; |
| 51 font-size: 80%; |
| 52 word-break: break-all; |
| 53 } |
| 54 |
| 55 .snippet-detail { |
| 56 font-size: 90%; |
| 57 } |
| 58 |
| 59 .snippet-hidden { |
| 60 display: none; |
| 61 } |
| 62 |
| 63 table.section-details > tbody > tr:nth-child(odd) { |
| 64 background: rgb(239, 243, 255); |
| 65 } |
| 66 |
| 67 .detail { |
| 68 color: gray; |
| 69 font-weight: normal; |
| 70 } |
| 71 |
| 72 .forms { |
| 73 margin-top: 0.3em; |
| 74 } |
| 75 |
| 76 #submit-clear { |
| 77 margin-bottom: 0.5em; |
| 78 } |
| OLD | NEW |