| 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. */ | 6 /* TODO(dzhioev): support RTL. http://crbug.com/423354 */ |
| 7 | 7 |
| 8 :host { | 8 :host { |
| 9 -webkit-user-select: none; | 9 -webkit-user-select: none; |
| 10 background-color: rgb(242, 166, 0); | 10 background-color: rgb(242, 166, 0); |
| 11 color: white; | 11 color: white; |
| 12 display: block; | 12 display: block; |
| 13 font-family: 'Roboto'; | 13 font-family: 'Roboto'; |
| 14 font-weight: 300; |
| 14 height: 100%; | 15 height: 100%; |
| 15 } | 16 } |
| 16 | 17 |
| 17 core-animated-pages { | 18 core-animated-pages { |
| 18 left: 114px; | 19 left: 114px; |
| 19 position: absolute; | 20 position: absolute; |
| 20 right: 0; | 21 right: 0; |
| 21 top: 100px; | 22 top: 100px; |
| 22 } | 23 } |
| 23 | 24 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 41 #device-label { | 42 #device-label { |
| 42 margin-left: -0.3em; | 43 margin-left: -0.3em; |
| 43 } | 44 } |
| 44 | 45 |
| 45 #code { | 46 #code { |
| 46 font-family: 'Roboto'; | 47 font-family: 'Roboto'; |
| 47 font-size: 120px; | 48 font-size: 120px; |
| 48 font-weight: lighter; | 49 font-weight: lighter; |
| 49 } | 50 } |
| 50 | 51 |
| OLD | NEW |