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

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

Issue 2649103006: arc: Add splash screen for ARC++ Kiosk startup (Closed)
Patch Set: achuithb@ comments Created 3 years, 10 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
(Empty)
1 /* Copyright 2017 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 #arc-kiosk-splash {
6 -webkit-align-items: center;
7 -webkit-justify-content: center;
8 background: white;
9 display: flex;
10 }
11
12 #arc-splash-content {
13 -webkit-align-items: center;
14 -webkit-justify-content: center;
15 display: flex;
16 flex-direction: column;
17 position: relative;
18 }
19
20 #arc-splash-header {
21 -webkit-padding-start: 108px;
22 background: left center no-repeat;
23 background-size: 96px;
24 color: #666;
25 display: flex;
26 font-size: 48px;
27 height: 96px;
28 line-height: 96px;
29 }
30
31 #arc-splash-launch-text {
32 color: #666;
33 font-size: 18px;
34 padding-top: 50px;
35 }
36
37 #arc-splash-spinner {
38 height: 32px;
39 width: 32px;
40 }
41
42 #arc-splash-shortcut-info {
43 bottom: 50px;
44 color: gray;
45 left: 0;
46 position: absolute;
47 right: 0;
48 text-align: center;
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698