| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 * | 4 * |
| 5 * Incognito and guest mode NTP shared CSS. | 5 * Incognito and guest mode NTP shared CSS. */ |
| 6 */ | |
| 7 | 6 |
| 8 body { | 7 body { |
| 9 -webkit-font-smoothing: antialiased; | 8 -webkit-font-smoothing: antialiased; |
| 10 font-size: 85%; | 9 font-size: 85%; |
| 11 } | 10 } |
| 12 | 11 |
| 13 h1 { | 12 h1 { |
| 14 font-size: 200%; | 13 font-size: 200%; |
| 15 font-weight: 400; | 14 font-weight: 400; |
| 16 margin-bottom: .77em; | 15 margin-bottom: .77em; |
| 17 } | 16 } |
| 18 | 17 |
| 19 p { | 18 p { |
| 20 line-height: 1.5; | 19 line-height: 1.5; |
| 21 margin: .588em 0; | 20 margin: .588em 0; |
| 22 text-align: start; | 21 text-align: start; |
| 23 } | 22 } |
| 24 | 23 |
| 25 a { | 24 a { |
| 26 color: rgb(51, 103, 214); | 25 color: rgb(51, 103, 214); |
| 27 } | 26 } |
| 28 | 27 |
| 29 a:hover { | 28 a:hover { |
| 30 text-decoration: underline; | 29 text-decoration: underline; |
| 31 } | 30 } |
| 32 | 31 |
| 33 /* 'Learn More' button styled like a Material Design text button. | 32 /* 'Learn More' button styled like a Material Design text button. |
| 34 * TODO(edwardjung): Switch styled links to actual text buttons. | 33 * TODO(edwardjung): Switch styled links to actual text buttons. */ |
| 35 */ | |
| 36 .learn-more-button { | 34 .learn-more-button { |
| 37 color: rgb(66, 133, 244); | 35 color: rgb(66, 133, 244); |
| 38 display: inline-block; | 36 display: inline-block; |
| 39 font-size: 92.8%; | 37 font-size: 92.8%; |
| 40 font-weight: 500; | 38 font-weight: 500; |
| 41 margin-top: 1.98em; | 39 margin-top: 1.98em; |
| 42 padding: 10.5px 12px; | 40 padding: 10.5px 12px; |
| 43 text-decoration: none; | 41 text-decoration: none; |
| 44 text-transform: uppercase; | 42 text-transform: uppercase; |
| 45 } | 43 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 .content { | 75 .content { |
| 78 padding: 16px 8px; | 76 padding: 16px 8px; |
| 79 } | 77 } |
| 80 } | 78 } |
| 81 | 79 |
| 82 @media (max-height:480px) and (max-width:400px) { | 80 @media (max-height:480px) and (max-width:400px) { |
| 83 .content { | 81 .content { |
| 84 margin: auto; | 82 margin: auto; |
| 85 } | 83 } |
| 86 } | 84 } |
| OLD | NEW |