OLD | NEW |
(Empty) | |
| 1 /* Copyright 2014 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 a { |
| 6 color: rgb(43, 43, 43); |
| 7 } |
| 8 |
| 9 body { |
| 10 background: rgb(247, 247, 247); |
| 11 color: rgb(43, 43, 43); |
| 12 line-height: 1.7em; |
| 13 } |
| 14 |
| 15 button { |
| 16 background: rgb(76, 142, 250); |
| 17 border: 0; |
| 18 border-radius: 2px; |
| 19 box-sizing: border-box; |
| 20 color: #fff; |
| 21 float: right; |
| 22 margin: -6px 0 0; |
| 23 padding: 8px 24px; |
| 24 } |
| 25 |
| 26 #details { |
| 27 margin: 40px 0 150px 0; |
| 28 } |
| 29 |
| 30 h1 { |
| 31 -webkit-margin-after: 15px; |
| 32 font-size: 1.6em; |
| 33 font-weight: normal; |
| 34 line-height: 1.2em; |
| 35 } |
| 36 |
| 37 .hidden { |
| 38 display: none; |
| 39 } |
| 40 |
| 41 .icon { |
| 42 background: url(images/lock_red.png) no-repeat; |
| 43 background-size: 100%; |
| 44 height: 69px; |
| 45 margin: 0 0 40px; |
| 46 width: 56px; |
| 47 } |
| 48 |
| 49 .interstitial-wrapper { |
| 50 box-sizing: border-box; |
| 51 margin: 10% auto 0; |
| 52 max-width: 582px; |
| 53 width: 100%; |
| 54 } |
| 55 |
| 56 .nav-wrapper { |
| 57 margin-top: 60px; |
| 58 } |
| 59 |
| 60 .nav-wrapper::after { |
| 61 clear: both; |
| 62 content: ''; |
| 63 display: table; |
| 64 width: 100%; |
| 65 } |
| 66 |
| 67 p { |
| 68 margin-bottom: 22px; |
| 69 } |
| 70 |
| 71 @media (max-width: 700px) { |
| 72 .interstitial-wrapper { |
| 73 padding: 0 10%; |
| 74 } |
| 75 } |
OLD | NEW |