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 padding-bottom: 10px; | |
| 7 } | |
| 8 | |
| 9 h2 { | |
| 10 color: #666; | |
| 11 font-size: 1.2em; | |
| 12 font-weight: normal; | |
| 13 margin: 10px 0; | |
| 14 } | |
| 15 | |
| 16 #icon-lock { | |
| 17 content: -webkit-image-set( | |
| 18 url('locked_page_100.png') 1x, | |
| 19 url('locked_page_200.png') 2x); | |
| 20 padding-bottom: 15px; | |
| 21 padding-top: 10px; | |
| 22 } | |
| 23 | |
| 24 .inner-text { | |
| 25 color: #444; | |
| 26 line-height: 18px; | |
| 27 padding: 0 20px 20px 20px; | |
| 28 text-align: start; | |
| 29 } | |
| 30 | |
| 31 /* Increase line height at higher resolutions. */ | |
| 32 @media (min-width: 641px) and (min-height: 641px) { | |
| 33 .inner-text { | |
| 34 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
| |
| 35 } | |
| 36 } | |
| 37 | |
| 38 /* Decrease padding at low sizes. */ | |
| 39 @media (max-width: 640px) { | |
| 40 .inner-text { | |
| 41 padding: 20px; | |
| 42 } | |
| 43 } | |
| 44 | |
| 45 @media (max-height: 640px) { | |
| 46 .inner-text { | |
| 47 padding: 20px; | |
| 48 } | |
| 49 } | |
| 50 | |
| 51 .outer-text { | |
| 52 -webkit-transition: height ease-in 218ms; | |
| 53 overflow: hidden; | |
| 54 } | |
| 55 | |
| 56 .ssl-help-box-inner { | |
| 57 line-height: 18px; | |
| 58 padding-left: 20px; | |
| 59 padding-right: 20px; | |
| 60 } | |
| OLD | NEW |