Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(549)

Side by Side Diff: chrome/common/extensions/docs/examples/api/document_scan/scan.css

Issue 286933006: Implement a JavaScript API for document scanning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Starting over. This used to be 286933006 Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698