Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 box-sizing: border-box; | 6 box-sizing: border-box; |
| 7 color: var(--paper-grey-900); | 7 color: var(--paper-grey-900); |
| 8 display: flex; | 8 display: flex; |
| 9 flex-direction: column; | 9 flex-direction: column; |
| 10 font-size: 100%; | 10 font-size: 100%; |
| 11 justify-content: center; | 11 justify-content: center; |
| 12 margin: 0; | 12 margin: 0; |
| 13 min-height: 100vh; | 13 min-height: 100vh; |
| 14 } | 14 } |
| 15 | 15 |
| 16 a { | 16 a { |
| 17 color: var(--google-blue-500); | 17 color: var(--google-blue-500); |
| 18 cursor: pointer; | |
|
tommycli
2017/02/27 23:17:22
Hey, this shouldn't be necessary, since the action
tmartino
2017/02/28 00:08:53
Hmm, so I tried creating a <style> and found that
tommycli
2017/02/28 01:06:28
I'm okay with fixing this up in a followup. Do you
| |
| 18 text-decoration: none; | 19 text-decoration: none; |
| 19 } | 20 } |
| 20 | 21 |
| 21 ol { | 22 ol { |
| 22 margin: 0; | 23 margin: 0; |
| 23 padding: 0; | 24 padding: 0; |
| 24 } | 25 } |
| 25 | 26 |
| 26 strong { | 27 strong { |
| 27 font-weight: 500; | 28 font-weight: 500; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 241 } | 242 } |
| 242 | 243 |
| 243 #edge-overlay { | 244 #edge-overlay { |
| 244 font-size: 9px; | 245 font-size: 9px; |
| 245 } | 246 } |
| 246 | 247 |
| 247 #taskbar-overlay { | 248 #taskbar-overlay { |
| 248 font-size: 12.2px; | 249 font-size: 12.2px; |
| 249 } | 250 } |
| 250 } | 251 } |
| OLD | NEW |