Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_screen_host_pairing.css

Issue 1179323005: Polymer upgraded to 1.0 in login flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@polymer_pre_migration
Patch Set: Fixed tests. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 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: var(--google-yellow-500);
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 font-weight: 300;
15 height: 100%; 15 height: 100%;
16 } 16 }
17 17
18 core-animated-pages { 18 neon-animated-pages {
19 left: 114px; 19 left: 114px;
20 position: absolute; 20 position: absolute;
21 right: 0; 21 right: 0;
22 top: 100px; 22 top: 100px;
23 } 23 }
24 24
25 #illustration { 25 #illustration {
26 background-image: url(chrome://theme/IDR_BUILDINGS_ILLUSTRATION); 26 background-image: url(chrome://theme/IDR_BUILDINGS_ILLUSTRATION);
27 bottom: 95px; 27 bottom: 95px;
28 height: 368px; 28 height: 368px;
29 position: absolute; 29 position: absolute;
30 right: 95px; 30 right: 95px;
31 width: 503px; 31 width: 503px;
32 } 32 }
33 33
34 #device-indicator { 34 #device-indicator {
35 bottom: 74px; 35 bottom: 74px;
36 font-size: 33px; 36 font-size: 33px;
37 font-weight: bolder; 37 font-weight: bolder;
38 left: 130px; 38 left: 130px;
39 position: absolute; 39 position: absolute;
40 } 40 }
41 41
42 #device-label { 42 #device-label {
43 margin-left: -0.3em; 43 margin-left: 0.4em;
44 } 44 }
45 45
46 #code { 46 #code {
47 font-family: 'Roboto'; 47 font-family: 'Roboto';
48 font-size: 120px; 48 font-size: 120px;
49 font-weight: lighter; 49 font-weight: lighter;
50 } 50 }
51 51
52 iron-icon {
53 height: 48px;
54 width: 48px;
55 }
56
Roman Sorokin (ftl) 2015/06/19 13:10:31 nit: Please remove empty line
dzhioev (left Google) 2015/06/20 02:01:55 I'm not sure about that. Some CSS files have empty
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698