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

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

Issue 2879783003: PDF: Tweak font-size and colors to more closely match other MD WebUI (Closed)
Patch Set: Created 3 years, 7 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
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 body { 5 body {
6 background-color: rgb(82, 86, 89); 6 background-color: rgb(82, 86, 89);
7 font-family: 'Roboto', 'Noto', sans-serif; 7 color: var(--primary-text-color);
8 line-height: 154%;
8 margin: 0; 9 margin: 0;
9 } 10 }
10 11
11 viewer-page-indicator { 12 viewer-page-indicator {
12 visibility: hidden; 13 visibility: hidden;
13 z-index: 2; 14 z-index: 2;
14 } 15 }
15 16
16 viewer-pdf-toolbar { 17 viewer-pdf-toolbar {
17 position: fixed; 18 position: fixed;
(...skipping 23 matching lines...) Expand all
41 viewer-zoom-toolbar { 42 viewer-zoom-toolbar {
42 display: none; 43 display: none;
43 } 44 }
44 } 45 }
45 46
46 @media(max-width: 300px) { 47 @media(max-width: 300px) {
47 viewer-zoom-toolbar { 48 viewer-zoom-toolbar {
48 display: none; 49 display: none;
49 } 50 }
50 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698