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

Side by Side Diff: chrome/browser/resources/ntp4/guest_tab.css

Issue 208683007: Update incognito and guest browsing new tab page: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wrap to 80 chars Created 6 years, 8 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
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 body { 5 html {
6 margin: 10px 8px; 6 background: #fafafa !important;
7 } 7 }
8 8
9 .icon { 9 body {
10 -webkit-margin-end: 3px; 10 font-family: Arial, sans-serif;
11 -webkit-margin-start: 6px; 11 line-height: 1.5;
12 } 12 }
13 13
14 html[dir='ltr'] .icon { 14 h1 {
15 float: right; 15 color: #000;
16 font-size: 1.7em !important;
17 font-weight: normal;
18 line-height: 1.2em;
19 margin: 0 0 .6em;
16 } 20 }
17 21
18 html[dir='rtl'] .icon { 22 a {
19 float: left; 23 color: rgb(39, 110, 242);
24 text-decoration: none;
25 }
26
27 a:hover {
28 text-decoration: underline;
29 }
30
31 p {
32 margin: 0 0 1em;
20 } 33 }
21 34
22 .content { 35 .content {
23 background-color: #eee; 36 background-color: #fff;
24 border-radius: 5px; 37 border-radius: 2px;
38 box-shadow: 0 4px 6px 1px rgba(50, 50, 50, 0.14);
39 box-sizing: border-box;
25 color: black; 40 color: black;
26 margin-left: auto; 41 line-height: 1.5;
27 margin-right: auto; 42 margin: 5.5em auto 0;
28 margin-top: 66px; 43 max-width: 630px;
29 max-width: 600px; 44 padding: 30px 35px 30px 37px;
30 padding: 10px; 45 width: 100%;
31 } 46 }
47
48 .content p:last-child {
49 margin-bottom: 4px;
50 }
51
52
53 @media (max-width:700px) {
54 body {
55 margin: 3em 2em 2em;
56 }
57 }
58
59 @media (max-width:400px) {
60 body {
61 margin: 3em 1.5em 2em;
62 }
63 }
64
65 @media (max-height:480px) and (max-width:400px) {
66 .content {
67 margin: auto;
68 }
69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698