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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/screen_arc_kiosk_splash.css
diff --git a/chrome/browser/resources/chromeos/login/screen_arc_kiosk_splash.css b/chrome/browser/resources/chromeos/login/screen_arc_kiosk_splash.css
new file mode 100644
index 0000000000000000000000000000000000000000..f86286874dee7b5f39bd37f738ebaf10d1e41fa2
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/screen_arc_kiosk_splash.css
@@ -0,0 +1,49 @@
+/* Copyright 2017 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. */
+
+#arc-kiosk-splash {
+ -webkit-align-items: center;
+ -webkit-justify-content: center;
+ background: white;
+ display: flex;
+}
+
+#arc-splash-content {
+ -webkit-align-items: center;
+ -webkit-justify-content: center;
+ display: flex;
+ flex-direction: column;
+ position: relative;
+}
+
+#arc-splash-header {
+ -webkit-padding-start: 108px;
+ background: left center no-repeat;
+ background-size: 96px;
+ color: #666;
+ display: flex;
+ font-size: 48px;
+ height: 96px;
+ line-height: 96px;
+}
+
+#arc-splash-launch-text {
+ color: #666;
+ font-size: 18px;
+ padding-top: 50px;
+}
+
+#arc-splash-spinner {
+ height: 32px;
+ width: 32px;
+}
+
+#arc-splash-shortcut-info {
+ bottom: 50px;
+ color: gray;
+ left: 0;
+ position: absolute;
+ right: 0;
+ text-align: center;
+}

Powered by Google App Engine
This is Rietveld 408576698