Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 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 | 5 |
| 6 body { | 6 body { |
| 7 font-size: 80%; | 7 font-size: 80%; |
| 8 margin: 1em; | |
|
xunjieli
2017/05/02 17:10:01
Should we make the left-margin and right-margin au
eroman
2017/05/02 20:07:58
Done
| |
| 9 max-width: 60em; | |
| 8 } | 10 } |
| 9 | 11 |
| 10 button { | 12 button { |
| 11 display: block; | 13 display: block; |
| 12 font-size: 110%; | 14 font-size: 110%; |
| 13 font-weight: bold; | 15 font-weight: bold; |
| 14 margin: 10px auto; | 16 margin: 10px auto; |
| 15 min-height: 48px; | 17 min-height: 48px; |
| 16 width: 200px; | 18 width: 200px; |
| 17 } | 19 } |
| 18 | 20 |
| 19 button:disabled > .export-view-logging-enabled, | 21 h2 { |
| 20 button:enabled > .export-view-logging-disabled | 22 color: #546E7A; |
| 21 { | 23 font-weight: normal; |
| 22 display: none; | 24 font-size: 170%; |
| 25 margin-bottom: 1.5em; | |
| 23 } | 26 } |
| 24 | 27 |
| 25 .radio-button-div { | 28 .radio-button-div { |
| 26 margin: 7px auto; | 29 margin: 7px auto; |
| 27 } | 30 } |
| 28 | 31 |
| 29 .warning { | 32 .warning { |
| 30 color: red; | 33 color: red; |
| 31 font-size: 90%; | 34 font-size: 90%; |
| 32 font-weight: normal; | |
| 33 } | 35 } |
| 34 | 36 |
| 35 #net-export-main { | 37 .section-container { |
| 36 margin: 8px; | 38 margin-top: 2em; |
| 37 } | 39 } |
| 38 | 40 |
| 39 #export-view-file-path-text { | 41 #export-view-file-path-logging, |
| 40 white-space: pre-wrap; | 42 #export-view-file-path-stopped { |
| 41 word-wrap: break-word; | 43 font-family: monospace; |
| 42 } | 44 } |
| 45 | |
| 46 .outline-box { | |
| 47 margin-top: 2em; | |
| 48 border: 1px solid #ababab; | |
| 49 padding: 0.5em; | |
| 50 line-height: 1.5em; | |
| 51 } | |
| OLD | NEW |