| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 body { | 5 body { |
| 6 margin: 10px 10px 0; | 6 margin: 10px 10px 0; |
| 7 <if expr="not is_android and not is_ios"> | 7 <if expr="not is_android and not is_ios"> |
| 8 min-width: 47em; | 8 min-width: 47em; |
| 9 </if> | 9 </if> |
| 10 /* Should be larger than the evaluated height of needs-restart. */ | 10 /* Should be larger than the evaluated height of needs-restart. */ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 .section-header > table { | 78 .section-header > table { |
| 79 width: 100%; | 79 width: 100%; |
| 80 } | 80 } |
| 81 | 81 |
| 82 .section-header-title { | 82 .section-header-title { |
| 83 font-weight: bold; | 83 font-weight: bold; |
| 84 line-height: 200%; | 84 line-height: 200%; |
| 85 } | 85 } |
| 86 | 86 |
| 87 select { |
| 88 max-width: 85vw; |
| 89 } |
| 90 |
| 87 #experiment-reset-all { | 91 #experiment-reset-all { |
| 88 float: right; | 92 float: right; |
| 89 } | 93 } |
| 90 | 94 |
| 91 html[dir=rtl] #experiment-reset-all { | 95 html[dir=rtl] #experiment-reset-all { |
| 92 float: left; | 96 float: left; |
| 93 } | 97 } |
| 94 | 98 |
| 95 .vbox-container { | 99 .vbox-container { |
| 96 -webkit-box-orient: vertical; | 100 -webkit-box-orient: vertical; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 margin-top: 10px; | 183 margin-top: 10px; |
| 180 padding: 10px 24px; | 184 padding: 10px 24px; |
| 181 text-transform: uppercase; | 185 text-transform: uppercase; |
| 182 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); | 186 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); |
| 183 } | 187 } |
| 184 | 188 |
| 185 button { | 189 button { |
| 186 font-size: 104%; | 190 font-size: 104%; |
| 187 } | 191 } |
| 188 | 192 |
| OLD | NEW |