Chromium Code Reviews| 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 #host-pairing { | 6 :host { |
| 7 background: white; | 7 -webkit-user-select: none; |
| 8 height: 601px; | 8 background-color: rgb(242, 166, 0); |
| 9 padding: 20px; | 9 color: white; |
| 10 width: 720px; | 10 display: block; |
| 11 font-family: 'Roboto'; | |
| 12 height: 100%; | |
| 11 } | 13 } |
| 12 | 14 |
| 13 #host-pairing .page-name { | 15 core-animated-pages { |
| 14 text-align: center; | 16 left: 114px; |
|
Nikita (slow)
2014/09/25 20:20:00
nit: rtl
dzhioev (left Google)
2014/09/26 22:56:11
RTL will not be supported in this version. Added T
| |
| 17 position: absolute; | |
| 18 right: 0; | |
| 19 top: 100px; | |
| 15 } | 20 } |
| 16 | 21 |
| 22 #illustration { | |
| 23 background-image: url(chrome://theme/IDR_BUILDINGS_ILLUSTRATION); | |
| 24 bottom: 95px; | |
| 25 height: 368px; | |
| 26 position: absolute; | |
| 27 right: 95px; | |
|
Nikita (slow)
2014/09/25 20:20:00
nit: rtl
dzhioev (left Google)
2014/09/26 22:56:11
ditto
| |
| 28 width: 503px; | |
| 29 } | |
| 30 | |
| 31 #device-indicator { | |
| 32 bottom: 74px; | |
| 33 font-size: 33px; | |
| 34 font-weight: bolder; | |
| 35 left: 130px; | |
|
Nikita (slow)
2014/09/25 20:20:00
nit: rtl
dzhioev (left Google)
2014/09/26 22:56:11
ditto
| |
| 36 position: absolute; | |
| 37 } | |
| 38 | |
| 39 #device-label { | |
| 40 margin-left: -0.3em; | |
| 41 } | |
| 42 | |
| 43 #code { | |
| 44 font-family: 'Roboto'; | |
| 45 font-size: 120px; | |
| 46 font-weight: lighter; | |
| 47 } | |
| 48 | |
| OLD | NEW |