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

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

Issue 9538002: Create Login UI for Demo User. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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) 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 margin: 0;
14 overflow: hidden;
15 padding: 0;
16 }
17
18 #page {
19 -webkit-box-align: center;
20 -webkit-box-pack: center;
21 background: -webkit-linear-gradient(top, #dadada, white);
22 display: -webkit-box;
23 height: 100%;
24 position: absolute;
25 width: 100%;
26 }
27
28 #logo-container {
29 text-align: center;
30 }
31
32 #logo {
33 width: 150px;
34 }
35
36 #demo-login-text {
37 font-family: 'Open Sans';
38 font-size: 18px;
39 font-weight: bold;
40 padding-top: 80px;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698