-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
65 lines (57 loc) · 1.26 KB
/
App.css
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
body {
background-image: url('C:\Users\MANAN GUPTA\Desktop\powerpoint-math-for-kids-background-design-template-9c7101e6f62f51589b70148f650f4f6e_screen.jpg');
background-size: cover; /* Adjust as needed */
/* Additional background properties can be added here */
}
/* Animation for the entire site */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.App {
animation: fadeIn 1s ease-out; /* Apply fade-in animation when the site loads */
}
/* Animation for the header */
.Header {
animation: slideDown 0.5s ease-out; /* Apply slide-down animation to the header */
}
@keyframes slideDown {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
/* Animation for the matching exercise */
.matching-exercise {
animation: bounce 0.5s ease-out; /* Apply bounce animation to the matching exercise */
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
/* Animation for the footer */
.Footer {
animation: slideUp 0.5s ease-out; /* Apply slide-up animation to the footer */
}
@keyframes slideUp {
from {
transform: translateY(50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}