| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 | 5 |
| 6 html { | 6 html { |
| 7 font-family: segoe ui, arial, helvetica, sans-serif; | 7 font-family: segoe ui, arial, helvetica, sans-serif; |
| 8 font-size: 13px; | 8 font-size: 13px; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 /* Links and buttons. *********************************************************/ | 52 /* Links and buttons. *********************************************************/ |
| 53 | 53 |
| 54 #promo-skip-button, | 54 #promo-skip-button, |
| 55 #promo-skip-button:hover, | 55 #promo-skip-button:hover, |
| 56 #promo-advanced, | 56 #promo-advanced, |
| 57 #promo-advanced:hover, | 57 #promo-advanced:hover, |
| 58 #sync-setup-overlay * a:link { | 58 #sync-setup-overlay * a:link { |
| 59 color: rgb(17, 85, 204); | 59 color: rgb(17, 85, 204); |
| 60 } | 60 } |
| 61 | 61 |
| 62 html:not([isstartup]) #promo-skip-button { |
| 63 display: none; |
| 64 } |
| 65 |
| 62 #sync-setup-overlay * a:visited { | 66 #sync-setup-overlay * a:visited { |
| 63 color: rgb(102, 17, 12); | 67 color: rgb(102, 17, 12); |
| 64 } | 68 } |
| 65 | 69 |
| 66 #promo-skip-button:active, | 70 #promo-skip-button:active, |
| 67 #promo-advanced:active, | 71 #promo-advanced:active, |
| 68 #sync-setup-overlay * a:active { | 72 #sync-setup-overlay * a:active { |
| 69 color: rgb(209, 72, 54); | 73 color: rgb(209, 72, 54); |
| 70 } | 74 } |
| 71 | 75 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 | 120 |
| 117 #promo-title-container h2 { | 121 #promo-title-container h2 { |
| 118 color: rgb(102, 102, 102); | 122 color: rgb(102, 102, 102); |
| 119 font-size: 14px; | 123 font-size: 14px; |
| 120 font-weight: normal; | 124 font-weight: normal; |
| 121 } | 125 } |
| 122 | 126 |
| 123 #promo-learn-more { | 127 #promo-learn-more { |
| 124 display: inline-block; | 128 display: inline-block; |
| 125 } | 129 } |
| OLD | NEW |