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

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

Issue 608283003: Remove retail mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 (c) 2012 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 width: 100%;
10 }
11
12 body {
13 background: #000;
14 margin: 0;
15 overflow: hidden;
16 padding: 0;
17 }
18
19 #page {
20 -webkit-box-align: center;
21 -webkit-box-pack: center;
22 /* Delay the login screen for 2 seconds then fade it in. */
23 -webkit-transition: opacity 1s linear 2s;
24 background: white;
25 display: -webkit-box;
26 height: 100%;
27 opacity: 0;
28 position: absolute;
29 width: 100%;
30 }
31
32 #logo-container {
33 text-align: center;
34 }
35
36 #logo {
37 width: 150px;
38 }
39
40 #demo-login-text {
41 font-size: 14px;
42 padding-left: 30px;
43 padding-top: 10px;
44 }
45
46 #lower-container {
47 height: 40px;
48 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/external_provider_impl.cc ('k') | chrome/browser/resources/chromeos/login/demo_user_login.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698