Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: chrome/browser/resources/pdf/index-material.css

Issue 806633003: Implement basic toolbar with Material Design and loading progress. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove commented out code Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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: RobotoDraft, Roboto, 'Helvetica Neue', Helvetica, Arial;
raymes 2015/01/13 04:32:01 Do we want RobotoDraft there?
Alexandre Carlton 2015/01/13 05:21:43 RobotoDraft is the default for Polymer, so if it's
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698