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

Unified 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: image removed. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/demo_user_login.css
diff --git a/chrome/browser/resources/chromeos/login/demo_user_login.css b/chrome/browser/resources/chromeos/login/demo_user_login.css
new file mode 100644
index 0000000000000000000000000000000000000000..07fc214c9f49c4ae9f48536e9749d13d235698b5
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/demo_user_login.css
@@ -0,0 +1,41 @@
+/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+html,
+body {
+ height: 100%;
+ width: 100%;
+}
+
+body {
+ margin: 0;
+ overflow: hidden;
+ padding: 0;
+}
+
+#page {
+ -webkit-box-align: center;
+ -webkit-box-pack: center;
+ background: -webkit-linear-gradient(top, #dadada, white);
+ display: -webkit-box;
+ height: 100%;
+ position: absolute;
+ width: 100%;
+}
+
+#logo-container {
+ text-align: center;
+}
+
+#logo {
+ width: 150px;
+}
+
+#demo-login-text {
+ font-family: 'Open Sans';
+ font-size: 18px;
+ font-weight: bold;
+ padding-top: 80px;
+}

Powered by Google App Engine
This is Rietveld 408576698