OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |