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 .tile-page { | 5 .tile-page { |
6 -webkit-box-orient: vertical; | 6 -webkit-box-orient: vertical; |
7 display: -webkit-box; | 7 display: -webkit-box; |
8 height: 100%; | 8 height: 100%; |
9 position: relative; | 9 position: relative; |
10 width: 100%; | 10 width: 100%; |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 -webkit-transform: scale(1, 1); | 154 -webkit-transform: scale(1, 1); |
155 } | 155 } |
156 | 156 |
157 60% { | 157 60% { |
158 -webkit-animation-timing-function: ease-in; | 158 -webkit-animation-timing-function: ease-in; |
159 -webkit-transform: scale(1.3, 0.02); | 159 -webkit-transform: scale(1.3, 0.02); |
160 opacity: 1; | 160 opacity: 1; |
161 } | 161 } |
162 | 162 |
163 90% { | 163 90% { |
164 -webkit-animation-timing-function: default; | |
165 -webkit-transform: scale(0.3, 0.02); | 164 -webkit-transform: scale(0.3, 0.02); |
166 opacity: 0.7; | 165 opacity: 0.7; |
167 } | 166 } |
168 | 167 |
169 100% { | 168 100% { |
170 -webkit-animation-timing-function: linear; | 169 -webkit-animation-timing-function: linear; |
171 -webkit-transform: scale(0.3, 0.02); | 170 -webkit-transform: scale(0.3, 0.02); |
172 opacity: 0; | 171 opacity: 0; |
173 } | 172 } |
174 } | 173 } |
(...skipping 10 matching lines...) Expand all Loading... |
185 | 184 |
186 /** Scrollbars ****************************************************************/ | 185 /** Scrollbars ****************************************************************/ |
187 | 186 |
188 .tile-page-content::-webkit-scrollbar { | 187 .tile-page-content::-webkit-scrollbar { |
189 width: 13px; | 188 width: 13px; |
190 } | 189 } |
191 | 190 |
192 .tile-page-content::-webkit-scrollbar-button { | 191 .tile-page-content::-webkit-scrollbar-button { |
193 display: none; | 192 display: none; |
194 } | 193 } |
OLD | NEW |