OLD | NEW |
1 /* Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 /* Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 * for details. All rights reserved. Use of this source code is governed by a | 2 * for details. All rights reserved. Use of this source code is governed by a |
3 * BSD-style license that can be found in the LICENSE file. */ | 3 * BSD-style license that can be found in the LICENSE file. */ |
4 | 4 |
| 5 iframe { |
| 6 /* We would use display: none here, but then Firefox fails to properly compute |
| 7 * styles. See #274 */ |
| 8 visibility: hidden; |
| 9 } |
| 10 |
5 /* Compiled output from | 11 /* Compiled output from |
6 * http://codepen.io/mknadler/pen/11b75cb014a3c382f54abf527655af21. */ | 12 * http://codepen.io/mknadler/pen/11b75cb014a3c382f54abf527655af21. */ |
7 | 13 |
8 iframe { | |
9 display: none; | |
10 } | |
11 | |
12 svg { | 14 svg { |
13 position: absolute; | 15 position: absolute; |
14 margin: auto; | 16 margin: auto; |
15 left: 0; | 17 left: 0; |
16 right: 0; | 18 right: 0; |
17 bottom: 0; | 19 bottom: 0; |
18 top: 0; | 20 top: 0; |
19 } | 21 } |
20 | 22 |
21 #right-flank { | 23 #right-flank { |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 -webkit-transform: translate(110px, 0px) scale(0.4); | 260 -webkit-transform: translate(110px, 0px) scale(0.4); |
259 transform: translate(110px, 0px) scale(0.4); | 261 transform: translate(110px, 0px) scale(0.4); |
260 fill: #00A6E4; | 262 fill: #00A6E4; |
261 } | 263 } |
262 80% { | 264 80% { |
263 -webkit-transform: translate(0px, 0px) scale(1); | 265 -webkit-transform: translate(0px, 0px) scale(1); |
264 transform: translate(0px, 0px) scale(1); | 266 transform: translate(0px, 0px) scale(1); |
265 fill: #0074C1; | 267 fill: #0074C1; |
266 } | 268 } |
267 } | 269 } |
OLD | NEW |