forked from housseindjirdeh/angular2-hn
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathloader.component.scss
More file actions
109 lines (100 loc) · 1.68 KB
/
Copy pathloader.component.scss
File metadata and controls
109 lines (100 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@use "../../scss/media" as *;
@use "../../scss/theme_variables" as *;
.loader {
-webkit-animation: load1 1s infinite ease-in-out;
animation: load1 1s infinite ease-in-out;
width: 1em;
height: 4em;
&:before, &:after {
-webkit-animation: load1 1s infinite ease-in-out;
animation: load1 1s infinite ease-in-out;
width: 1em;
height: 4em;
}
&:before, &:after {
position: absolute;
top: 0;
content: '';
}
&:before {
left: -1.5em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
}
.loading-section {
height: 70px;
margin: 40px 0 40px 40px;
@media #{$mobile-only} {
display: block;
position: relative;
margin: 45vh 0;
}
}
.loader {
text-indent: -9999em;
margin: 20px 20px;
position: relative;
font-size: 11px;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
&:after {
left: 1.5em;
}
@media #{$mobile-only} {
margin: 20px auto;
}
}
@-webkit-keyframes load1 {
0%,
80%,
100% {
box-shadow: 0 0;
height: 2em;
}
40% {
box-shadow: 0 -2em;
height: 3em;
}
}
@keyframes load1 {
0%,
80%,
100% {
box-shadow: 0 0;
height: 2em;
}
40% {
box-shadow: 0 -2em;
height: 3em;
}
}
@media #{$mobile-only} {
@-webkit-keyframes load1 {
0%,
80%,
100% {
box-shadow: 0 0;
height: 4em;
}
40% {
box-shadow: 0 -2em;
height: 5em;
}
}
@keyframes load1 {
0%,
80%,
100% {
box-shadow: 0 0;
height: 3em;
}
40% {
box-shadow: 0 -2em;
height: 4em;
}
}
}