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

Side by Side Diff: chrome/browser/resources/chromeos/idle_logout_dialog.css

Issue 9568038: Implement the auto-logout on idle feature for Kiosk mode. (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, body {
7 font-family: Arial, Helvetica, sans-serif;
8 font-size: 13px;
9 height: 100%;
10 margin: 0;
11 overflow: hidden;
12 width: 100%;
13 }
14
15 #main-box {
16 border: 1px solid black;
17 }
18
19 #title {
20 background: -webkit-linear-gradient(left, white, #dadada);
21 border-bottom: 1px solid #bbb;
22 font-weight: bold;
23 padding: 10px;
24 }
25
26 #warning {
27 padding: 10px;
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698