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

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

Issue 481573002: Add a max width to distilled pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 #showOriginal { 140 #showOriginal {
141 margin: auto 1.296rem 1.296rem 1.296rem; 141 margin: auto 1.296rem 1.296rem 1.296rem;
142 } 142 }
143 143
144 #content { 144 #content {
145 margin-top: 1.296rem; 145 margin-top: 1.296rem;
146 } 146 }
147 147
148 /* Main margins. */ 148 /* Main margins. */
149 149
150 body {
151 max-width: 800px;
152 margin: 0px auto;
153 }
154
150 #mainContent { 155 #mainContent {
151 margin: 1.296rem 1.296rem auto; 156 margin: 1.296rem 1.296rem auto;
152 } 157 }
153 158
154 /* Link colors for light, dark and sepia themes */ 159 /* Link colors for light, dark and sepia themes */
155 160
156 a:link { 161 a:link {
157 color: #55F; 162 color: #55F;
158 } 163 }
159 164
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 255
251 pre { 256 pre {
252 line-height: 1.296rem; 257 line-height: 1.296rem;
253 overflow-x: scroll; 258 overflow-x: scroll;
254 padding: .5em; 259 padding: .5em;
255 } 260 }
256 261
257 .hidden { 262 .hidden {
258 display: none; 263 display: none;
259 } 264 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698