OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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: 14px; | 8 font-size: 14px; |
9 /* It's necessary to put this here instead of in body in order to get the | 9 /* It's necessary to put this here instead of in body in order to get the |
10 background-size of 100% to work properly */ | 10 background-size of 100% to work properly */ |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 #footer-content { | 151 #footer-content { |
152 display: -webkit-box; | 152 display: -webkit-box; |
153 height: 49px; | 153 height: 49px; |
154 -webkit-box-align: center; | 154 -webkit-box-align: center; |
155 } | 155 } |
156 | 156 |
157 #footer-content > * { | 157 #footer-content > * { |
158 margin: 0 9px; | 158 margin: 0 9px; |
159 } | 159 } |
160 | 160 |
| 161 #logo-img { |
| 162 margin-top: 4px; |
| 163 } |
| 164 |
161 /* Trash. *********************************************************************/ | 165 /* Trash. *********************************************************************/ |
162 | 166 |
163 #trash { | 167 #trash { |
164 height: 100%; | 168 height: 100%; |
165 position: absolute; | 169 position: absolute; |
166 opacity: 0; | 170 opacity: 0; |
167 right: 0; | 171 right: 0; |
168 top: 50px; | 172 top: 50px; |
169 -webkit-transition: top 0.2s, opacity 0; | 173 -webkit-transition: top 0.2s, opacity 0; |
170 -webkit-transition-delay: 0, 0.2s; | 174 -webkit-transition-delay: 0, 0.2s; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 min-width: 90px; | 209 min-width: 90px; |
206 opacity: 0.3; | 210 opacity: 0.3; |
207 top: 0; | 211 top: 0; |
208 z-index: 5; | 212 z-index: 5; |
209 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 213 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
210 } | 214 } |
211 | 215 |
212 .page-switcher:hover { | 216 .page-switcher:hover { |
213 background-color: rgba(0, 0, 0, 0.2); | 217 background-color: rgba(0, 0, 0, 0.2); |
214 } | 218 } |
OLD | NEW |