| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 html { | 5 html { |
| 6 font-size: 20px; | 6 font-size: 20px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 textarea { | 9 textarea { |
| 10 width: 100%; | 10 width: 100%; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #info > div { | 13 #info > div { |
| 14 width: 100%; | 14 width: 100%; |
| 15 } | 15 } |
| 16 | 16 |
| 17 #info h2 { | 17 #info h2 { |
| 18 color: rgb(74, 142, 230); | 18 color: rgb(74, 142, 230); |
| 19 font-size: 100%; | 19 font-size: 100%; |
| 20 margin-bottom: 0.3em; | 20 margin-bottom: 0.3em; |
| 21 margin-top: 1em; | 21 margin-top: 1em; |
| 22 } | 22 } |
| 23 | 23 |
| 24 #info .section { | |
| 25 display: inline-block; | |
| 26 margin-left: auto; | |
| 27 margin-right: auto; | |
| 28 } | |
| 29 | |
| 30 .section-details { | 24 .section-details { |
| 31 width: 100%; | 25 width: 100%; |
| 32 } | 26 } |
| 33 | 27 |
| 28 .section-details > tbody > tr:nth-child(odd) { |
| 29 background: rgb(239, 243, 255); |
| 30 } |
| 31 |
| 34 .section-details .detail, | 32 .section-details .detail, |
| 35 .section-details .value { | 33 .section-details .value { |
| 36 width: 50%; | 34 width: 50%; |
| 37 } | 35 } |
| 38 | 36 |
| 39 td.title-link { | 37 td.title-link { |
| 40 padding-bottom: 0.5em; | 38 padding-bottom: 0.5em; |
| 41 padding-top: 0.5em; | 39 padding-top: 0.5em; |
| 42 } | 40 } |
| 43 | 41 |
| 44 .expiry { | 42 .expiry { |
| 45 color: gray; | 43 color: gray; |
| 46 font-size: 80%; | 44 font-size: 80%; |
| 47 } | 45 } |
| 48 | 46 |
| 49 .date { | 47 .date { |
| 50 white-space: nowrap; | 48 white-space: nowrap; |
| 51 } | 49 } |
| 52 | 50 |
| 53 .url { | 51 .url { |
| 54 display: inline-block; | 52 display: inline-block; |
| 55 font-size: 80%; | 53 font-size: 80%; |
| 56 word-break: break-all; | 54 word-break: break-all; |
| 57 } | 55 } |
| 58 | 56 |
| 59 .snippet-detail { | 57 .snippet-detail { |
| 60 font-size: 90%; | 58 font-size: 90%; |
| 61 } | 59 } |
| 62 | 60 |
| 63 .snippet-hidden { | 61 .hidden { |
| 64 display: none; | 62 display: none; |
| 65 } | 63 } |
| 66 | 64 |
| 67 table.section-details > tbody > tr:nth-child(odd) { | |
| 68 background: rgb(239, 243, 255); | |
| 69 } | |
| 70 | |
| 71 .detail { | 65 .detail { |
| 72 color: gray; | 66 color: gray; |
| 73 font-weight: normal; | 67 font-weight: normal; |
| 74 } | 68 } |
| 75 | 69 |
| 76 .forms { | 70 .forms { |
| 77 margin-top: 0.3em; | 71 margin-top: 0.3em; |
| 78 } | 72 } |
| 79 | 73 |
| 80 #submit-clear { | 74 #submit-clear { |
| 81 margin-bottom: 0.5em; | 75 margin-bottom: 0.5em; |
| 76 } |
| 77 |
| 78 #last-json-text { |
| 79 border: 1px solid black; |
| 80 color: gray; |
| 81 font-size: 90%; |
| 82 padding: 4px; |
| 82 } | 83 } |
| OLD | NEW |