-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (66 loc) · 1.43 KB
/
styles.css
File metadata and controls
77 lines (66 loc) · 1.43 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
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 100px;
background-color: #f8f9fa;
overflow: hidden; /* Hides overflowing content */
}
.tickmark {
font-size: 60px;
transition: font-size 0.5s ease-in-out;
}
.message {
font-size: 20px;
margin-bottom: 30px;
}
.login-link {
color: #007bff;
text-decoration: underline;
}
/* Party poppers animation */
.party-poppers {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none; /* Prevents interaction with poppers */
z-index: -1; /* Places behind other content */
}
.popper {
position: absolute;
width: 30px;
height: 30px;
background-color: #ffcc00;
border-radius: 50%;
opacity: 0;
pointer-events: none;
animation: pop 2s ease-out infinite;
}
.popper:nth-child(1) {
animation-delay: 0.5s;
}
.popper:nth-child(2) {
animation-delay: 1s;
}
.popper:nth-child(3) {
animation-delay: 1.5s;
}
@keyframes pop {
0% {
opacity: 0;
transform: translateY(0) scale(0);
}
50% {
opacity: 1;
transform: translateY(-100px) scale(1);
}
100% {
opacity: 0;
transform: translateY(-200px) scale(0);
}
}
/* Tickmark animation */
.growTickmark {
font-size: 120px;
}