| 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 |
| 302 table#braille-table { |
| 303 border: none; |
| 304 border-spacing: 0; |
| 305 } |
| 306 |
| 307 table#braille-table * { |
| 308 color: #fff; |
| 309 } |
| 310 |
| 311 table#braille-table tr:first-child { |
| 312 font-size: 85%; |
| 313 } |
| OLD | NEW |