| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 overflow: hidden; | 94 overflow: hidden; |
| 95 } | 95 } |
| 96 | 96 |
| 97 .usertext { | 97 .usertext { |
| 98 font-style: italic; | 98 font-style: italic; |
| 99 font-weight: 700; | 99 font-weight: 700; |
| 100 } | 100 } |
| 101 | 101 |
| 102 #braille-container { | 102 #braille-container { |
| 103 height: 35px; | 103 height: 35px; |
| 104 overflow: hidden; |
| 104 position: relative; | 105 position: relative; |
| 105 top: -35px; | 106 top: -35px; |
| 106 } | 107 } |
| 107 | 108 |
| 109 #braille-table-holder-outer { |
| 110 display: flex; |
| 111 height: 100%; |
| 112 overflow: scroll; |
| 113 padding-bottom: 17px; |
| 114 padding-right: 17px; |
| 115 width: 100%; |
| 116 } |
| 117 |
| 118 .braille-table-holder { |
| 119 flex-grow: 1; |
| 120 } |
| 121 |
| 108 #braille-text { | 122 #braille-text { |
| 109 font-family: 'Droid Sans Mono', Courier, monospace; | 123 font-family: 'Droid Sans Mono', Courier, monospace; |
| 110 font-size: 12pt; | 124 font-size: 12pt; |
| 111 height: 17px; | 125 height: 17px; |
| 112 letter-spacing: 3.13px; | 126 letter-spacing: 3.13px; |
| 113 line-height: 17px; | 127 line-height: 17px; |
| 114 white-space: pre; | 128 white-space: pre; |
| 115 } | 129 } |
| 116 | 130 |
| 117 #braille-cells { | 131 #braille-cells { |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 background-color: #fff; | 307 background-color: #fff; |
| 294 border: 1px solid #000; | 308 border: 1px solid #000; |
| 295 font-family: 'Roboto', sans-serif; | 309 font-family: 'Roboto', sans-serif; |
| 296 font-size: 20pt; | 310 font-size: 20pt; |
| 297 height: 2em; | 311 height: 2em; |
| 298 margin: 0 24px; | 312 margin: 0 24px; |
| 299 width: 8em; | 313 width: 8em; |
| 300 } | 314 } |
| 301 | 315 |
| 302 table#braille-table { | 316 table#braille-table { |
| 303 border: none; | 317 border-spacing: 0; |
| 318 } |
| 319 |
| 320 table#braille-table2 { |
| 304 border-spacing: 0; | 321 border-spacing: 0; |
| 305 } | 322 } |
| 306 | 323 |
| 307 table#braille-table * { | 324 table#braille-table * { |
| 325 border: 1px solid black; |
| 308 color: #fff; | 326 color: #fff; |
| 309 } | 327 } |
| 310 | 328 |
| 329 table#braille-table2 * { |
| 330 border: 1px solid black; |
| 331 color: #fff; |
| 332 } |
| 333 |
| 311 table#braille-table tr:first-child { | 334 table#braille-table tr:first-child { |
| 312 font-size: 85%; | 335 font-size: 85%; |
| 313 } | 336 } |
| OLD | NEW |