OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 paper-progress { |
| 6 height: 56px; |
| 7 position: absolute; |
| 8 width: 100%; |
| 9 z-index: 3; |
| 10 } |
| 11 |
| 12 paper-progress::shadow #activeProgress { |
| 13 background-color: rgb(33, 150, 243); |
| 14 } |
| 15 |
| 16 paper-progress::shadow #progressContainer { |
| 17 background-color: rgb(100, 181, 246); |
| 18 } |
| 19 |
| 20 core-toolbar { |
| 21 background-color: transparent; |
| 22 color: rgb(241, 241, 241); |
| 23 font-size: 1.5em; |
| 24 height: 56px; |
| 25 padding-left: 1em; |
| 26 padding-right: 1em; |
| 27 z-index: 3; |
| 28 } |
| 29 |
| 30 core-toolbar /deep/ ::selection { |
| 31 background: rgb(187, 222, 251); |
| 32 } |
OLD | NEW |