aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-list/loader.component.scss
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/video-list/loader.component.scss')
-rw-r--r--client/src/app/videos/video-list/loader.component.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/client/src/app/videos/video-list/loader.component.scss b/client/src/app/videos/video-list/loader.component.scss
new file mode 100644
index 000000000..44cf1f9da
--- /dev/null
+++ b/client/src/app/videos/video-list/loader.component.scss
@@ -0,0 +1,22 @@
1// Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d
2.glyphicon-refresh-animate {
3 -animation: spin .7s infinite linear;
4 -ms-animation: spin .7s infinite linear;
5 -webkit-animation: spinw .7s infinite linear;
6 -moz-animation: spinm .7s infinite linear;
7}
8
9@keyframes spin {
10 from { transform: scale(1) rotate(0deg);}
11 to { transform: scale(1) rotate(360deg);}
12}
13
14@-webkit-keyframes spinw {
15 from { -webkit-transform: rotate(0deg);}
16 to { -webkit-transform: rotate(360deg);}
17}
18
19@-moz-keyframes spinm {
20 from { -moz-transform: rotate(0deg);}
21 to { -moz-transform: rotate(360deg);}
22}