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 border: 0; | 6 border: 0; |
| 7 height: 35px; | 7 height: 35px; |
| 8 margin: 0; | 8 margin: 0; |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 padding: 0; | 10 padding: 0; |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 291 | 291 |
| 292 #tutorial_footer button { | 292 #tutorial_footer button { |
| 293 background-color: #fff; | 293 background-color: #fff; |
| 294 border: 1px solid #000; | 294 border: 1px solid #000; |
| 295 font-family: 'Roboto', sans-serif; | 295 font-family: 'Roboto', sans-serif; |
| 296 font-size: 20pt; | 296 font-size: 20pt; |
| 297 height: 2em; | 297 height: 2em; |
| 298 margin: 0 24px; | 298 margin: 0 24px; |
| 299 width: 8em; | 299 width: 8em; |
| 300 } | 300 } |
| 301 table { | |
|
dmazzoni
2016/09/26 04:53:49
nit: blank line before
Also make this: table#brai
ultimatedbz
2016/09/27 22:56:24
Done.
| |
| 302 border: none; | |
| 303 border-spacing: 0; | |
| 304 } | |
| 305 | |
| 306 table * { | |
|
dmazzoni
2016/09/26 04:53:49
Same here, and below
ultimatedbz
2016/09/27 22:56:24
Done.
| |
| 307 color: #fff; | |
| 308 } | |
| 309 | |
| 310 table tr:first-child { | |
| 311 font-size: 85%; | |
| 312 } | |
| OLD | NEW |