Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 .explanation-par { | |
| 6 color: #444; | |
| 7 padding: 0 20px 20px 20px; | |
| 8 text-align: start; | |
| 9 } | |
| 10 | |
| 11 h2 { | |
|
Patrick Dubroy
2013/10/21 07:48:51
Any reason not to push this into neterror.css, so
felt
2013/10/21 13:08:34
Done.
| |
| 12 color: #666; | |
| 13 font-size: 1.2em; | |
| 14 font-weight: normal; | |
| 15 margin: 10px 0; | |
| 16 } | |
| 17 | |
| 18 #icon-lock { | |
| 19 content: -webkit-image-set( | |
| 20 url('locked_page_100.png') 1x, | |
| 21 url('locked_page_200.png') 2x); | |
| 22 padding-bottom: 15px; | |
| 23 padding-top: 10px; | |
| 24 } | |
| 25 | |
| 26 /* Increase line height at higher resolutions. */ | |
| 27 @media (min-width: 641px) and (min-height: 641px) { | |
|
Patrick Dubroy
2013/10/21 07:48:51
Are you sure you need this media query? This is th
felt
2013/10/21 13:08:34
Done.
| |
| 28 .explanation-par { | |
| 29 line-height: 18px; | |
| 30 } | |
| 31 .ssl-help-box-inner { | |
|
Patrick Dubroy
2013/10/21 07:48:51
I'd collapse this into the rule above for brevity.
felt
2013/10/21 13:08:34
Done.
| |
| 32 line-height: 18px; | |
| 33 } | |
| 34 } | |
| 35 | |
| 36 /* Decrease padding at low sizes. */ | |
| 37 @media (max-width: 640px) { | |
| 38 .explanation-par { | |
| 39 padding: 0; | |
| 40 } | |
| 41 .ssl-help-box-inner { | |
|
Patrick Dubroy
2013/10/21 07:48:51
Same, collapse into one.
felt
2013/10/21 13:08:34
Done.
| |
| 42 padding: 0; | |
| 43 } | |
| 44 } | |
| 45 | |
| 46 /* Decrease padding at low sizes. */ | |
| 47 @media (max-height: 640px) { | |
| 48 .explanation-par { | |
| 49 padding: 0; | |
| 50 } | |
| 51 .ssl-help-box-inner { | |
|
Patrick Dubroy
2013/10/21 07:48:51
Same, collapse into one.
felt
2013/10/21 13:08:34
Done.
| |
| 52 padding: 0; | |
| 53 } | |
| 54 } | |
| 55 | |
| 56 .ssl-help-box-inner { | |
| 57 padding: 0 20px; | |
| 58 } | |
| OLD | NEW |