| 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 */ | |
| 5 | 4 |
| 6 /* TODO(dzhioev): support RTL. http://crbug.com/423354 */ | 5 /* TODO(dzhioev): support RTL. http://crbug.com/423354 */ |
| 7 /* TODO(xdai): Remove the hard-coded font-family for 'Roboto'. */ | 6 /* TODO(xdai): Remove the hard-coded font-family for 'Roboto'. */ |
| 8 | 7 |
| 9 :host { | 8 :host { |
| 10 -webkit-user-select: none; | 9 -webkit-user-select: none; |
| 11 background: white; | 10 background: white; |
| 12 display: block; | 11 display: block; |
| 13 font-family: 'Roboto'; | 12 font-family: 'Roboto'; |
| 14 height: 600px; | 13 height: 600px; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 42 | 41 |
| 43 #code { | 42 #code { |
| 44 color: #757575; | 43 color: #757575; |
| 45 font-size: 55px; | 44 font-size: 55px; |
| 46 font-weight: 300; | 45 font-weight: 300; |
| 47 } | 46 } |
| 48 | 47 |
| 49 pairing-device-list { | 48 pairing-device-list { |
| 50 height: 252px; | 49 height: 252px; |
| 51 } | 50 } |
| OLD | NEW |