Index: chrome/browser/resources/ntp4/guest_tab.css |
diff --git a/chrome/browser/resources/ntp4/guest_tab.css b/chrome/browser/resources/ntp4/guest_tab.css |
index ae24211242a82655230bcc71da188add71a12e7a..0b10742c9e9967bbde3f02e2cdc077a0d627ce9b 100644 |
--- a/chrome/browser/resources/ntp4/guest_tab.css |
+++ b/chrome/browser/resources/ntp4/guest_tab.css |
@@ -2,30 +2,69 @@ |
* Use of this source code is governed by a BSD-style license that can be |
* found in the LICENSE file. */ |
+html { |
+ background: #fafafa !important; |
+} |
+ |
body { |
- margin: 10px 8px; |
+ font-family: Arial, sans-serif; |
+ font-size: 75%; |
+ line-height: 1.5; |
+} |
+ |
+h1 { |
+ color: #000; |
+ font-size: 1.7em; |
+ font-weight: normal; |
+ line-height: 1.2em; |
+ margin: 0 0 .7em; |
} |
-.icon { |
- -webkit-margin-end: 3px; |
- -webkit-margin-start: 6px; |
+a { |
+ color: rgb(66, 129, 244); |
+ text-decoration: none; |
} |
-html[dir='ltr'] .icon { |
- float: right; |
+a:hover { |
+ text-decoration: underline; |
} |
-html[dir='rtl'] .icon { |
- float: left; |
+p { |
+ margin: 0 0 1em; |
} |
.content { |
- background-color: #eee; |
- border-radius: 5px; |
+ background-color: #fff; |
+ border-radius: 2px; |
+ box-shadow: 0 4px 6px 1px rgba(50, 50, 50, 0.14); |
+ box-sizing: border-box; |
color: black; |
- margin-left: auto; |
- margin-right: auto; |
- margin-top: 66px; |
- max-width: 600px; |
- padding: 10px; |
+ line-height: 1.5; |
+ margin: 5.5em auto 0; |
+ max-width: 630px; |
+ padding: 30px 35px 30px 37px; |
+ width: 100%; |
+} |
+ |
+.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; |
+ } |
} |