Commit 01295ae1cc84e6e426d1e20adb91ddfb2667de78

Authored by Elena.Budnik
1 parent 0c2112c7

nice loader

Showing 1 changed file with 11 additions and 19 deletions   Show diff stats
js/resources/css/login.css
... ... @@ -25,36 +25,28 @@ input, textarea { font-family:verdana,tahoma,arial,verdana,sans-serif; font-size
25 25  
26 26 .loader {
27 27 display: inline-block;
28   - position: absolute;
29   - left: 60%;
30   - top: 50%;
31 28 width: 64px;
32 29 height: 64px;
33   - cursor: wait;
  30 + position: absolute;
  31 + left: 60%;
  32 + top: 50%;
34 33 }
35 34 .loader:after {
36 35 content: " ";
37 36 display: block;
  37 + width: 46px;
  38 + height: 46px;
  39 + margin: 1px;
38 40 border-radius: 50%;
39   - width: 0;
40   - height: 0;
41   - margin: 6px;
42   - box-sizing: border-box;
43   - border: 26px solid #fff;
  41 + border: 5px solid #fff;
44 42 border-color: #fff transparent #fff transparent;
45   - animation: loader 1.2s infinite;
  43 + animation: loader 1.2s linear infinite;
46 44 }
47   -
48   -@keyframes loader{
  45 +@keyframes loader {
49 46 0% {
50   - transform: rotate(0);
51   - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
52   - }
53   - 50% {
54   - transform: rotate(900deg);
55   - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  47 + transform: rotate(0deg);
56 48 }
57 49 100% {
58   - transform: rotate(1800deg);
  50 + transform: rotate(360deg);
59 51 }
60 52 }
... ...