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

Side by Side Diff: components/dom_distiller/core/css/distilledpage.css

Issue 341563002: Theme Preferences for Distilled Pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor changes Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 /* Set the global 'box-sizing' state to 'border-box'. 5 /* Set the global 'box-sizing' state to 'border-box'.
6 * *::after and *::before used to select psuedo-elements not selectable by *. */ 6 * *::after and *::before used to select psuedo-elements not selectable by *. */
7 7
8 *, 8 *,
9 *::after, 9 *::after,
10 *::before { 10 *::before {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 td, 69 td,
70 th { 70 th {
71 padding: 0; 71 padding: 0;
72 } 72 }
73 73
74 /* Base typography. */ 74 /* Base typography. */
75 75
76 body, 76 body,
77 html { 77 html {
78 color: #333;
79 font-family: 'Open Sans', sans-serif; 78 font-family: 'Open Sans', sans-serif;
80 font-size: 14px; 79 font-size: 14px;
81 line-height: 1.4; 80 line-height: 1.4;
82 text-rendering: optimizeLegibility; 81 text-rendering: optimizeLegibility;
83 overflow-x: hidden; 82 overflow-x: hidden;
84 } 83 }
85 84
85 /* Classes for highcontrast, sepia, and normal. */
86 .light {
87 color: #333;
88 background-color: #FFF;
89 }
90
91 .dark {
92 color: #FFF;
93 background-color: #000;
94 }
95
96 .sepia {
97 color: #000;
98 background-color: rgb(203, 173, 141);
99 }
100
86 /* Define vertical rhythm (baseline grid of 4px). */ 101 /* Define vertical rhythm (baseline grid of 4px). */
87 102
88 blockquote, 103 blockquote,
89 caption, 104 caption,
90 code, 105 code,
91 dd, 106 dd,
92 dl, 107 dl,
93 fieldset, 108 fieldset,
94 figure, 109 figure,
95 form, 110 form,
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 243
229 /* TODO(sunangel): Create loading indicator graphic to replace "Loading...". */ 244 /* TODO(sunangel): Create loading indicator graphic to replace "Loading...". */
230 #loadingIndicator { 245 #loadingIndicator {
231 display: table; 246 display: table;
232 margin: 0 auto; 247 margin: 0 auto;
233 } 248 }
234 249
235 .hidden { 250 .hidden {
236 display: hidden; 251 display: hidden;
237 } 252 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698