| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 #api-keys-notice-container { | 5 #api-keys-notice-container { |
| 7 display: flex; | 6 display: flex; |
| 8 justify-content: center; | 7 justify-content: center; |
| 9 position: fixed; | 8 position: fixed; |
| 10 top: 10px; | 9 top: 10px; |
| 11 width: 100%; | 10 width: 100%; |
| 12 } | 11 } |
| 13 | 12 |
| 14 #api-keys-notice { | 13 #api-keys-notice { |
| 15 background-color: rgba(0, 0, 0, 0.75); | 14 background-color: rgba(0, 0, 0, 0.75); |
| 16 border-radius: 4px; | 15 border-radius: 4px; |
| 17 color: whitesmoke; | 16 color: whitesmoke; |
| 18 font-size: 15px; | 17 font-size: 15px; |
| 19 padding: 20px; | 18 padding: 20px; |
| 20 text-align: center; | 19 text-align: center; |
| 21 width: 722px; /* same as #signin-banner */ | 20 width: 722px; /* same as #signin-banner */ |
| 22 } | 21 } |
| OLD | NEW |