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

Unified Diff: chrome/browser/resources/ntp4/incognito_and_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: Shorten illustration filename to fix presubmit 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/ntp4/guest_tab.html ('k') | chrome/browser/resources/ntp4/incognito_tab.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ntp4/incognito_and_guest_tab.css
diff --git a/chrome/browser/resources/ntp4/incognito_and_guest_tab.css b/chrome/browser/resources/ntp4/incognito_and_guest_tab.css
new file mode 100644
index 0000000000000000000000000000000000000000..f187498f646bed59f814126c20b64dd3ec212f48
--- /dev/null
+++ b/chrome/browser/resources/ntp4/incognito_and_guest_tab.css
@@ -0,0 +1,69 @@
+/* Copyright 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ *
+ * Incognito and guest mode NTP shared CSS.
+ */
+
+html {
+ background: #fafafa;
+}
+
+body {
+ line-height: 1.5;
+}
+
+h1 {
+ font-size: 1.7em;
+ font-weight: normal;
+ line-height: 1.2em;
+ margin-top: 0;
+}
+
+a {
+ color: rgb(39, 110, 242);
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+.content {
+ background-color: white;
+ border-radius: 2px;
+ box-shadow: 0 4px 6px 1px rgba(50, 50, 50, 0.14);
+ box-sizing: border-box;
+ color: black;
+ line-height: 1.5;
+ margin: 5.5em auto 0;
+ max-width: 640px;
+ padding: 30px 35px 30px 37px;
+ width: 100%;
+}
+
+.content > span {
+ display: block;
+}
+
+.content p:last-child {
+ margin-bottom: 4px;
+}
+
+@media (max-width:700px) {
+ body {
+ margin: 3em 2em 2em;
+ }
+}
+
+@media (max-width:400px) {
+ body {
+ margin: 3em 1.5em 2em;
+ }
+}
+
+@media (max-height:480px) and (max-width:400px) {
+ .content {
+ margin: auto;
+ }
+}
« no previous file with comments | « chrome/browser/resources/ntp4/guest_tab.html ('k') | chrome/browser/resources/ntp4/incognito_tab.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698