Add systemd file example
[oweals/peertube.git] / client / app / videos / shared / loader / loader.component.scss
1 div {
2   margin-top: 150px;
3 }
4
5 // Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d
6 .glyphicon-refresh-animate {
7     -animation: spin .7s infinite linear;
8     -ms-animation: spin .7s infinite linear;
9     -webkit-animation: spinw .7s infinite linear;
10     -moz-animation: spinm .7s infinite linear;
11 }
12
13 @keyframes spin {
14     from { transform: scale(1) rotate(0deg);}
15     to { transform: scale(1) rotate(360deg);}
16 }
17
18 @-webkit-keyframes spinw {
19     from { -webkit-transform: rotate(0deg);}
20     to { -webkit-transform: rotate(360deg);}
21 }
22
23 @-moz-keyframes spinm {
24     from { -moz-transform: rotate(0deg);}
25     to { -moz-transform: rotate(360deg);}
26 }