OLD | NEW |
| (Empty) |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 #waitAnimation { | |
7 position: absolute; | |
8 left: 0px; | |
9 top: 0px; | |
10 height:100%; | |
11 width:100%; | |
12 z-index:1000; | |
13 background-color:black; | |
14 opacity:0.6; | |
15 } | |
16 | |
17 #waitSpinner { | |
18 position: absolute; | |
19 height:60px; | |
20 width:60px; | |
21 top: 50%; | |
22 left: 50%; | |
23 margin-left: -30px; | |
24 margin-top: -30px; | |
25 -webkit-animation: rotation .6s infinite linear; | |
26 animation: rotation .6s infinite linear; | |
27 border-left:6px solid rgba(180,174,239,.15); | |
28 border-right:6px solid rgba(180,174,239,.15); | |
29 border-bottom:6px solid rgba(180,174,239,.15); | |
30 border-top:6px solid rgba(180,174,239,.8); | |
31 border-radius:100%; | |
32 } | |
33 | |
34 @-webkit-keyframes rotation { | |
35 from {-webkit-transform: rotate(0deg);} | |
36 to {-webkit-transform: rotate(359deg);} | |
37 } | |
OLD | NEW |