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

Unified Diff: chrome/browser/resources/safe_browsing/malware_block_v2.css

Issue 10855260: Safe Browsing malware interstitial redesign field trial. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compile warning Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/safe_browsing/malware_block_v2.css
diff --git a/chrome/browser/resources/safe_browsing/malware_block_v2.css b/chrome/browser/resources/safe_browsing/malware_block_v2.css
new file mode 100644
index 0000000000000000000000000000000000000000..165b97ea918e7f76d8d79b941748d2b0c66c3c0d
--- /dev/null
+++ b/chrome/browser/resources/safe_browsing/malware_block_v2.css
@@ -0,0 +1,154 @@
+/* Copyright (c) 2012 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. */
+
+body {
+ background: url('images/stripe.png') rgb(140, 0, 0);
+ font-family: Arial, Helvetica, sans-serif;
+ margin: 0;
+}
+
+.cell {
+ padding: 40px;
+}
+
+.box {
+ -webkit-border-radius: 5px;
+ -webkit-box-shadow: 3px 3px 8px rgb(140, 0, 0);
+ background-color: white;
+ color: rgb(75, 75, 77);
+ font-size: 13px;
+ line-height: 21px;
+ padding: 20px;
+ position: relative;
+ text-align: start;
+ width: 700px;
+}
+
+.float {
+ float: right;
+}
+
+html[dir='rtl'] .float {
+ float: left;
+}
+
+.clear {
+ clear: both;
+}
+
+.logo {
+ max-height: 54px;
+ padding: 15px;
+}
+
+#headline {
+ /* 20px of left margin, 90px of right margin in LTR.
+ * In RTL, 20px of right margin and 90px of left margin. */
+ -webkit-margin-end: 90px;
+ -webkit-margin-start: 20px;
+ color: #333;
+ font-size: 19px;
+ font-weight: bold;
+ margin-bottom: 8px;
+}
+
+.main {
+ -webkit-margin-end: 210px;
+ -webkit-margin-start: 20px;
+ font-size: 14px;
+ margin-bottom: 10px;
+ margin-top: 5px;
+}
+
+.dropdown {
+ -webkit-margin-end: 40px;
+ -webkit-margin-start: 20px;
+ font-size: 12px;
+}
+
+footer {
+ -webkit-margin-end: 20px;
+ -webkit-margin-start: 15px;
+ font-size: 12px;
+}
+
+#learn-more-link {
+ font-size: 12px;
+}
+
+.submission {
+ -webkit-margin-end: 5px;
+ margin-bottom: 15px;
+ margin-top: 15px;
+ padding: 0;
+}
+
+button {
+ -webkit-box-shadow: inset 0 1px 0 0 rgb(129, 169, 243),
+ 0 1px 2px rgba(0, 0, 0, .2);
+ background: -webkit-linear-gradient(rgb(112, 154, 241),
+ rgb(108, 148, 240) 44%, rgb(95, 132, 238));
+ border: 1px solid rgb(53, 116, 203);
+ border-radius: 3px;
+ color: white;
+ cursor: pointer;
+ display: inline-block;
+ font: bold 14px/1 arial, helvetica, sans-serif;
+ padding: 11px 38px 10px 38px;
+ text-align: center;
+ text-decoration: none;
+ text-shadow: 0 -1px 0 rgb(72, 101, 228);
+}
+
+button:hover,
+button:focus {
+ -webkit-box-shadow: inset 0 1px 0 0 rgb(129, 169, 243),
+ 0 1px 2px rgba(0, 0, 0, .3);
+ background: -webkit-linear-gradient(rgb(165, 188, 245),
+ rgb(108, 148, 240) 70%, rgb(95, 132, 238));
+ border: 1px solid rgb(53, 116, 203);
+}
+
+button:active {
+ -webkit-box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, .1);
+ background: -webkit-linear-gradient(rgb(112, 154, 241),
+ rgb(108, 148, 240) 44%, rgb(95, 132, 238));
+ border: 1px solid rgb(53, 116, 203);
+}
+
+hr {
+ margin: 0 20px;
+}
+
+a {
+ color: rgb(17, 84, 204);
+}
+
+a:link,
+a:visited {
+ text-decoration: none;
+}
+
+a:hover,
+a:active {
+ text-decoration: underline;
+}
+
+.checkbox {
+ -webkit-margin-end: 80px;
+ -webkit-margin-start: 5px;
+ position: relative;
+}
+
+.checkbox input {
+ -webkit-margin-start: 1px;
+ margin-top: 5px;
+ position: absolute;
+}
+
+.checkbox span {
+ -webkit-margin-start: 21px;
+ display: inline-block;
+}
+

Powered by Google App Engine
This is Rietveld 408576698