blob: 4ff5ccf1841311e4e27d0f15691b86ad82bef75d [file] [log] [blame]
Matteo Scandolof0c32262016-03-11 13:47:27 -08001.row + .row {
2 margin-top: 20px;
3}
4
5/* LOADER */
6.loader {
7 font-size: 10px;
8 margin: 0 auto;
9 text-indent: -9999em;
10 width: 11em;
11 height: 11em;
12 border-radius: 50%;
13 background: #ffffff;
14 background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
15 background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
16 background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
17 background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
18 background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
19 position: relative;
20 animation: load3 1.4s infinite linear;
21 transform: translateZ(0);
22}
23.loader:before {
24 width: 50%;
25 height: 50%;
26 background: #105E9E;
27 border-radius: 100% 0 0 0;
28 position: absolute;
29 top: 0;
30 left: 0;
31 content: '';
32}
33.loader:after {
34 background: #fff;
35 width: 75%;
36 height: 75%;
37 border-radius: 50%;
38 content: '';
39 margin: auto;
40 position: absolute;
41 top: 0;
42 left: 0;
43 bottom: 0;
44 right: 0;
45}
46
47@keyframes load3 {
48 0% {
49 -webkit-transform: rotate(0deg);
50 transform: rotate(0deg);
51 }
52 100% {
53 -webkit-transform: rotate(360deg);
54 transform: rotate(360deg);
55 }
56}