| 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 | 5 |
| 6 /* TODO(dzhioev): support RTL. http://crbug.com/423354 */ | 6 /* TODO(dzhioev): support RTL. http://crbug.com/423354 */ |
| 7 /* TODO(xdai): Remove the hard-coded font-family for 'Roboto'. */ |
| 7 | 8 |
| 8 :host { | 9 :host { |
| 9 -webkit-user-select: none; | 10 -webkit-user-select: none; |
| 10 background: white; | 11 background: white; |
| 11 display: block; | 12 display: block; |
| 12 font-family: 'Roboto'; | 13 font-family: 'Roboto'; |
| 13 height: 600px; | 14 height: 600px; |
| 14 position: relative; | 15 position: relative; |
| 15 width: 720px; | 16 width: 720px; |
| 16 } | 17 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 49 |
| 49 #code { | 50 #code { |
| 50 color: #757575; | 51 color: #757575; |
| 51 font-size: 55px; | 52 font-size: 55px; |
| 52 font-weight: 300; | 53 font-weight: 300; |
| 53 } | 54 } |
| 54 | 55 |
| 55 pairing-device-list { | 56 pairing-device-list { |
| 56 height: 252px; | 57 height: 252px; |
| 57 } | 58 } |
| OLD | NEW |