forked from google/santa-tracker-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreloader.scss
More file actions
56 lines (48 loc) · 1.47 KB
/
Copy pathpreloader.scss
File metadata and controls
56 lines (48 loc) · 1.47 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
#page-progress {
height: 100%;
margin: -80px;
}
.preload-bar {
width: 240px;
margin: -40px auto;
background-color: rgba(255,255,255,0.2);
border-radius: 20px;
overflow: hidden;
}
.preload-progress {
height: 20px;
background-image: -webkit-gradient(linear,left top,right bottom,color-stop(0.25,#ea4537),color-stop(0.25,#fff),color-stop(0.5,#fff),color-stop(0.5,#ea4537),color-stop(0.75,#ea4537),color-stop(0.75,#fff),to(#fff));
background-image: -webkit-linear-gradient(135deg,#ea4537 25%,#fff 25%,#fff 50%,#ea4537 50%,#ea4537 75%,#fff 75%,#fff);
background-image: -moz-linear-gradient(135deg,#ea4537 25%,#fff 25%,#fff 50%,#ea4537 50%,#ea4537 75%,#fff 75%,#fff);
background-image: -ms-linear-gradient(135deg,#ea4537 25%,#fff 25%,#fff 50%,#ea4537 50%,#ea4537 75%,#fff 75%,#fff);
background-image: linear-gradient(135deg,#ea4537 25%,#fff 25%,#fff 50%,#ea4537 50%,#ea4537 75%,#fff 75%,#fff);
background-size: 30px 30px;
border-radius: inherit;
-webkit-animation: animate-stripes 3s linear infinite;
-ms-animation: animate-stripes 3s linear infinite;
animation: animate-stripes 3s linear infinite;
}
@-webkit-keyframes animate-stripes {
0% {
background-position: 0 0;
}
100% {
background-position: 60px 0;
}
}
@-ms-keyframes animate-stripes {
0% {
background-position: 0 0;
}
100% {
background-position: 60px 0;
}
}
@keyframes animate-stripes {
0% {
background-position: 0 0;
}
100% {
background-position: 60px 0;
}
}