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

Side by Side Diff: chrome/browser/resources/incognito_tab.css

Issue 9455078: Simplify the incognito NTP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing, adding Android. 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
1 /**
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
1 body { 7 body {
2 margin: 10px 8px; 8 margin: 10px 8px;
3 } 9 }
10
11 .icon {
12 position: absolute;
13 top: -7px;
14 }
15
4 html[dir="ltr"] .icon { 16 html[dir="ltr"] .icon {
5 float: right;
6 margin: 0 6px 0 3px;
7 -webkit-transform: scale(-1, 1); 17 -webkit-transform: scale(-1, 1);
18 left: auto;
19 right: 10px;
8 } 20 }
21
9 html[dir="rtl"] .icon { 22 html[dir="rtl"] .icon {
10 float: left; 23 left: 10px;
11 margin: 0 3px 0 6px; 24 right: auto;
12 } 25 }
26
13 .content { 27 .content {
28 background-color: #eaeaea;
14 border-radius: 5px 5px; 29 border-radius: 5px 5px;
15 background-color: #eee; 30 border: 1px solid #d9d9d9;
31 box-shadow: 0 3px 5px rgba(0,0,0,0.25);
16 color: black; 32 color: black;
17 padding: 10px;
18 max-width: 600px;
19 margin-left: auto; 33 margin-left: auto;
20 margin-right: auto; 34 margin-right: auto;
21 margin-top: 66px; 35 margin-top: 66px;
36 max-width: 600px;
37 padding: 10px;
38 position: relative;
22 } 39 }
23 .extensionsmessage { 40
24 color: black; 41 h1 {
25 padding: 10px; 42 font-size: 1.25em;
26 max-width: 600px; 43 margin: 0;
27 margin-left: auto;
28 margin-right: auto;
29 margin-top: 5px;
30 } 44 }
31 .extensionicon { 45
32 float: left; 46 p {
33 margin: 10px 5px 0 0; 47 margin: 0.5em 0;
34 width: 30px;
35 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698