File size: 647 Bytes
6f6d8a6
 
e3d1af9
 
02d3589
 
 
 
e3d1af9
 
02d3589
 
e3d1af9
 
02d3589
 
 
 
 
 
 
 
e3d1af9
 
02d3589
 
 
 
 
 
e3d1af9
 
02d3589
 
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
@import 'tailwindcss';
@plugin '@tailwindcss/typography';

.progress-bar {
	height: 9px;
	border-radius: 4px;
	background: linear-gradient(90deg, #4f46e5 0%, #10b981 50%, #f59e0b 100%);
	transition: width 0.3s ease;
}
.wave {
	position: relative;
	overflow: hidden;
}
.wave::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: wave 2s linear infinite;
}
@keyframes wave {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}
.glow {
	box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
}