forked from scratchfoundation/scratch-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.css
More file actions
102 lines (85 loc) · 1.52 KB
/
Copy pathloader.css
File metadata and controls
102 lines (85 loc) · 1.52 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
@import "../../css/colors.css";
.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 999; /* Below preview modal */
display: flex;
justify-content: center;
align-items: center;
background-color: $motion-primary;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
text-align: center;
color: white;
}
.block-animation {
width: 125px;
height: 150px;
margin: 50px auto 0px;
}
.block-animation img {
display: block;
position: relative;
height: 30%;
margin-top: -4px;
}
.top-block {
animation: top-slide-in 1.5s ease infinite;
}
.middle-block {
animation: middle-slide-in 1.5s ease infinite;
}
.bottom-block {
animation: bottom-slide-in 1.5s ease infinite;
}
@keyframes top-slide-in {
0% {
transform: translateY(50px);
opacity: 0;
}
33% {
transform: translateY(0px);
opacity: 1;
}
}
@keyframes middle-slide-in {
0% {
transform: translateY(50px);
opacity: 0;
}
33% {
transform: translateY(50px);
opacity: 0;
}
66% {
transform: translateY(0px);
opacity: 1;
}
}
@keyframes bottom-slide-in {
0% {
transform: translateY(50px);
opacity: 0;
}
66% {
transform: translateY(50px);
opacity: 0;
}
100% {
transform: translateY(0px);
opacity: 1;
}
}
.message-container-outer {
height: 30px;
overflow: hidden;
}
.message-container-inner {
transition: transform 0.5s;
}
.message {
height: 20px;
margin: 5px 0;
}