-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (69 loc) · 1.99 KB
/
Copy pathstyle.css
File metadata and controls
78 lines (69 loc) · 1.99 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
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
body {
font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.brand-gradient {
background: linear-gradient(135deg, #0dd7a8 16%, #5ad849 63%, #d6d971 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
/* Background Styling */
.bg-custom-gradient {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0d9488 100%);
background-attachment: fixed;
min-height: 100vh;
}
/* Special Glow Effect for 100% Match */
.all-free-glow {
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
border: 2px solid #f59e0b !important;
box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
animation: pulse-glow 2s infinite alternate;
}
@keyframes pulse-glow {
0% {
box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}
100% {
box-shadow: 0 0 18px rgba(245, 158, 11, 0.6);
}
}
/* Fast Continuous Pulse Glow for Unsaved Save Response Button */
.unsaved-glow {
animation: fast-pulse-glow 0.8s infinite alternate !important;
}
@keyframes fast-pulse-glow {
0% {
box-shadow: 0 0 6px rgba(245, 158, 11, 0.5), 0 0 10px rgba(16, 185, 129, 0.4);
transform: scale(1);
}
100% {
box-shadow: 0 0 16px rgba(245, 158, 11, 0.9), 0 0 24px rgba(16, 185, 129, 0.8);
transform: scale(1.03);
}
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb {
background: rgba(13, 148, 136, 0.3);
border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(13, 148, 136, 0.6);
}
/* Utility Animations */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 200ms;
}