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

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

Issue 669623006: Add a "device disabled" OOBE screen (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits. Created 6 years, 2 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
OLDNEW
(Empty)
1 /* Copyright 2014 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 #device-disabled,
7 #device-disabled-top-container {
8 display: flex;
9 flex-direction: column;
10 }
11
12 #device-disabled {
13 font-size: 12px;
14 width: 330px;
15 }
16
17 #device-disabled-top-container {
18 background-color: rgb(214, 0, 0);
19 color: white;
20 text-align: center;
21 }
22
23 #device-disabled-heading {
24 font-size: 16px;
25 margin: 60px 20px 0;
26 }
27
28 #device-disabled-message {
29 font-weight: bold;
30 margin: 20px;
31 max-height: 400px;
32 overflow: auto;
33 white-space: pre-wrap;
34 }
35
36 #device-disabled-bottom-container {
37 background-color: white;
38 }
39
40 #device-disabled-explanation {
41 margin: 25px 20px 45px
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698