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 /* Google Drive welcome banners.*/ | 5 /* Google Drive welcome banners.*/ |
6 .gdrive-welcome-wrapper { | 6 .gdrive-welcome-wrapper { |
7 background-image: url('../images/clouds.png'); | 7 background-image: url('../images/clouds.png'); |
8 background-repeat: repeat-x; | 8 background-repeat: repeat-x; |
9 } | 9 } |
10 | 10 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 margin-bottom: 30px; | 115 margin-bottom: 30px; |
116 } | 116 } |
117 | 117 |
118 .gdrive-welcome.page .gdrive-welcome-text { | 118 .gdrive-welcome.page .gdrive-welcome-text { |
119 margin-bottom: 24px; | 119 margin-bottom: 24px; |
120 } | 120 } |
121 | 121 |
122 .gdrive-welcome.page .gdrive-welcome-dismiss { | 122 .gdrive-welcome.page .gdrive-welcome-dismiss { |
123 margin-left: 20px; | 123 margin-left: 20px; |
124 } | 124 } |
| 125 |
| 126 body:not([type='full-page']) .gdrive-welcome.page .gdrive-welcome-title { |
| 127 text-align: center; |
| 128 } |
| 129 |
| 130 body:not([type='full-page']) .gdrive-welcome.page .gdrive-welcome-wrapper { |
| 131 background-position: 0 0; |
| 132 } |
| 133 |
| 134 body:not([type='full-page']) .gdrive-welcome.page .gdrive-welcome-icon { |
| 135 height: 200px; |
| 136 } |
| 137 |
| 138 body:not([type='full-page']) .gdrive-welcome.page .gdrive-welcome-message { |
| 139 padding-left: 10%; |
| 140 padding-right: 10%; |
| 141 } |
OLD | NEW |