| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 */ | |
| 5 | 4 |
| 6 .popup-overlay { | 5 .popup-overlay { |
| 7 -webkit-transition: 250ms opacity; | 6 -webkit-transition: 250ms opacity; |
| 8 align-items: center; | 7 align-items: center; |
| 9 background: rgba(255, 255, 255, .75); | 8 background: rgba(255, 255, 255, .75); |
| 10 bottom: 0; | 9 bottom: 0; |
| 11 display: flex; | 10 display: flex; |
| 12 justify-content: center; | 11 justify-content: center; |
| 13 left: 0; | 12 left: 0; |
| 14 padding: 20px; | 13 padding: 20px; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 37 font-size: 105%; | 36 font-size: 105%; |
| 38 font-weight: bold; | 37 font-weight: bold; |
| 39 margin: 0; | 38 margin: 0; |
| 40 padding: 10px 15px 8px 15px; | 39 padding: 10px 15px 8px 15px; |
| 41 text-shadow: white 0 1px 2px; | 40 text-shadow: white 0 1px 2px; |
| 42 } | 41 } |
| 43 | 42 |
| 44 .popup-content-area { | 43 .popup-content-area { |
| 45 padding: 20px 20px 60px 20px; | 44 padding: 20px 20px 60px 20px; |
| 46 } | 45 } |
| OLD | NEW |