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 @font-face { |
| 6 font-family: 'Roboto'; |
| 7 font-style: normal; |
| 8 font-weight: 400; |
| 9 src: local('Roboto Regular'), local('Roboto-Regular'), url(chrome://resources/
roboto/roboto.woff2) format('woff2'); |
| 10 unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; |
| 11 } |
| 12 |
| 13 body { |
| 14 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial; |
| 15 } |
| 16 |
| 17 core-toolbar { |
| 18 background-color: transparent; |
| 19 color: rgb(241, 241, 241); |
| 20 font-size: 2em; |
| 21 height: 64px; |
| 22 z-index: 3; |
| 23 } |
| 24 |
| 25 #toolbar-shadow { |
| 26 position: fixed; |
| 27 width: 100%; |
| 28 z-index: 4; |
| 29 } |
| 30 |
| 31 #progress-bar { |
| 32 height: 64px; |
| 33 position: absolute; |
| 34 width: 100%; |
| 35 z-index: 3; |
| 36 } |
| 37 |
| 38 paper-progress::shadow #activeProgress { |
| 39 background-color: rgb(33, 150, 243); |
| 40 } |
| 41 |
| 42 paper-progress::shadow #progressContainer { |
| 43 background-color: rgb(100, 181, 246); |
| 44 } |
OLD | NEW |