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

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

Issue 7599014: [ChromeOS] Fix WebUI OOBE/Login background gradient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 * 4 *
5 * This is the stylesheet used by the Out of the box experience (OOBE) flow. 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow.
6 */ 6 */
7 7
8 html,
9 body {
10 height: 100%;
11 width: 100%;
12 }
13
8 body { 14 body {
9 background: -webkit-gradient(radial, center center, 0, center center, 400, 15 background: -webkit-gradient(radial, center center, 0, center center, 400,
10 from(#fefefe), to(#efefef)); 16 from(#fefefe), to(#efefef)) center center no-repeat;
11 font-size: 14px; 17 font-size: 14px;
12 overflow: hidden; 18 overflow: hidden;
13 padding: 10px; 19 padding: 10px;
14 } 20 }
15 21
16 #oobe { 22 #oobe {
17 left: 50%; 23 left: 50%;
18 margin-left: -320px; 24 margin-left: -320px;
19 margin-top: -270px; 25 margin-top: -270px;
20 position: absolute; 26 position: absolute;
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 #version-labels { 650 #version-labels {
645 -webkit-transition: all .5s linear; 651 -webkit-transition: all .5s linear;
646 bottom: 10px; 652 bottom: 10px;
647 color: #999; 653 color: #999;
648 font-size: 11px; 654 font-size: 11px;
649 left: 10px; 655 left: 10px;
650 opacity: 1.0; 656 opacity: 1.0;
651 position: absolute; 657 position: absolute;
652 text-shadow: 0 1px 1px #fff; 658 text-shadow: 0 1px 1px #fff;
653 } 659 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698