Chromium Code Reviews| 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; |
|
Patrick Dubroy
2013/09/12 13:12:26
This code seems like it should be shared with othe
felt
2013/09/16 00:05:21
The other error pages don't have any text in this
Patrick Dubroy
2013/09/18 15:01:35
Unless I'm mistaken, you shouldn't even need the r
|
| + } |
| +} |
| + |
| +/* 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; |
| +} |