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

Unified Diff: chrome/browser/resources/ssl/blocking.css

Issue 23965003: New SSL blocking screen (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Got the buttons working Created 7 years, 3 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/ssl/blocking.css
diff --git a/chrome/browser/resources/ssl/blocking.css b/chrome/browser/resources/ssl/blocking.css
new file mode 100644
index 0000000000000000000000000000000000000000..50440ef9e3233149060925b3af9e5662b58187c4
--- /dev/null
+++ b/chrome/browser/resources/ssl/blocking.css
@@ -0,0 +1,60 @@
+/* Copyright 2013 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. */
+
+.explanation-par {
+ padding-bottom: 10px;
+}
+
+h2 {
+ color: #666;
+ font-size: 1.2em;
+ font-weight: normal;
+ margin: 10px 0;
+}
+
+#icon-lock {
+ content: -webkit-image-set(
+ url('locked_page_100.png') 1x,
+ url('locked_page_200.png') 2x);
+ padding-bottom: 15px;
+ padding-top: 10px;
+}
+
+.inner-text {
+ color: #444;
+ line-height: 18px;
+ padding: 0 20px 20px 20px;
+ text-align: start;
+}
+
+/* Increase line height at higher resolutions. */
+@media (min-width: 641px) and (min-height: 641px) {
+ .inner-text {
+ line-height: 18px;
+ }
+}
+
+/* Decrease padding at low sizes. */
+@media (max-width: 640px) {
+ .inner-text {
+ padding: 20px;
+ }
+}
+
+@media (max-height: 640px) {
+ .inner-text {
+ padding: 20px;
+ }
+}
+
+.outer-text {
+ -webkit-transition: height ease-in 218ms;
+ overflow: hidden;
+}
+
+.ssl-help-box-inner {
+ line-height: 18px;
+ padding-left: 20px;
+ padding-right: 20px;
+}

Powered by Google App Engine
This is Rietveld 408576698