Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
|
Marc Treib
2016/04/14 15:43:44
2016
jkrcal
2016/04/14 16:41:01
Done.
| |
| 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 #info > div { | 9 #info > div { |
| 10 width: 100%; | 10 width: 100%; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #info h2 { | 13 #info h2 { |
| 14 color: rgb(74, 142, 230); | 14 color: rgb(74, 142, 230); |
| 15 font-size: 100%; | 15 font-size: 100%; |
| 16 margin-bottom: 0; | 16 margin-bottom: 0.3em; |
| 17 } | 17 margin-top: 1em; |
| 18 | |
| 19 #info .err { | |
| 20 color: red; | |
| 21 } | 18 } |
| 22 | 19 |
| 23 #info .section { | 20 #info .section { |
| 24 display: inline-block; | 21 display: inline-block; |
| 25 margin-left: auto; | 22 margin-left: auto; |
| 26 margin-right: auto; | 23 margin-right: auto; |
| 27 } | 24 } |
| 28 | 25 |
| 29 #info .section.hidden { | |
| 30 display: none; | |
| 31 } | |
| 32 | |
| 33 .section-details { | 26 .section-details { |
| 34 width: 100%; | 27 width: 100%; |
| 35 } | 28 } |
| 36 | 29 |
| 37 .section-details .detail, | 30 .section-details .detail, |
| 38 .section-details .value { | 31 .section-details .value { |
| 39 width: 50%; | 32 width: 50%; |
| 40 } | 33 } |
| 41 | 34 |
| 42 .section-details tr:nth-child(odd) { | 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 { | |
|
Bernhard Bauer
2016/04/14 16:50:24
All of your anchors have this class. Why not just
jkrcal
2016/04/15 14:11:50
At this moment, I do not have any other links. In
| |
| 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) { | |
| 43 background: rgb(239, 243, 255); | 64 background: rgb(239, 243, 255); |
| 44 } | 65 } |
| 45 | 66 |
| 46 #json-value { | 67 .detail { |
| 47 font-size: 75%; | 68 color: gray; |
| 69 font-weight: normal; | |
| 48 } | 70 } |
| 71 | |
| 72 .forms { | |
| 73 margin-top: 0.3em; | |
| 74 } | |
| 75 | |
| 76 input#submit-clear { | |
|
Bernhard Bauer
2016/04/14 16:50:24
#submit-clear an ID, which is supposed to be uniqu
jkrcal
2016/04/15 14:11:50
Done.
| |
| 77 margin-bottom: 0.5em; | |
| 78 } | |
| OLD | NEW |