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

Side by Side Diff: chrome/browser/resources/chromeos/app_launch/app_launch.css

Issue 22914008: Refactor kiosk app launch to be part of login screen UI flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright (c) 2013 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
6 html,
7 body {
8 height: 100%;
9 margin: 0;
10 overflow: hidden;
11 padding: 0;
12 width: 100%;
13 }
14
15 #page {
16 -webkit-box-align: center;
17 -webkit-box-pack: center;
18 /* Delay the login screen for 2 seconds then fade it in. */
19 -webkit-transition: opacity 1s;
20 background: white;
21 display: -webkit-box;
22 height: 100%;
23 opacity: 0;
24 position: absolute;
25 width: 100%;
26 }
27
28 #content {
29 -webkit-box-align: center;
30 -webkit-box-orient: vertical;
31 -webkit-box-pack: center;
32 display: -webkit-box;
33 position: relative;
34 }
35
36 #header {
37 -webkit-padding-start: 108px;
38 background: left center no-repeat;
39 background-size: 96px;
40 color: #666;
41 display: -webkit-box;
42 font-size: 48px;
43 height: 96px;
44 line-height: 96px;
45 }
46
47 #launch-text {
48 color: #666;
49 font-size: 18px;
50 padding-bottom: 50px;
51 padding-top: 50px;
52 }
53
54 #spinner {
55 height: 32px;
56 width: 32px;
57 }
58
59 #shortcut-info {
60 bottom: 50px;
61 color: gray;
62 left: 0;
63 position: absolute;
64 right: 0;
65 text-align: center;
66 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/ui/app_launch_view.cc ('k') | chrome/browser/resources/chromeos/app_launch/app_launch.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698