| 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 | 4 |
| 5 :host { | 5 :host { |
| 6 align-items: center; | 6 align-items: center; |
| 7 background: rgb(52, 73, 94); | 7 background: var(--md-toolbar-color); |
| 8 color: white; | 8 color: white; |
| 9 content-sizing: padding-box; | 9 content-sizing: padding-box; |
| 10 display: flex; | 10 display: flex; |
| 11 min-height: 56px; | 11 min-height: 56px; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #title h1 { | 14 #title h1 { |
| 15 -webkit-margin-end: 0; | 15 -webkit-margin-end: 0; |
| 16 -webkit-margin-start: 24px; | 16 -webkit-margin-start: 24px; |
| 17 font-size: 123.1%; | 17 font-size: 123.1%; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 display: none; | 100 display: none; |
| 101 } | 101 } |
| 102 } | 102 } |
| 103 | 103 |
| 104 @media all and (max-width: 1024px) { | 104 @media all and (max-width: 1024px) { |
| 105 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ | 105 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ |
| 106 #actions { | 106 #actions { |
| 107 display: none; | 107 display: none; |
| 108 } | 108 } |
| 109 } | 109 } |
| OLD | NEW |