-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (35 loc) · 865 Bytes
/
Copy pathstyle.css
File metadata and controls
38 lines (35 loc) · 865 Bytes
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
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #1e293b;
border-radius: 10px;
}
/* Nav Button States */
.nav-btn.active {
background-color: #1e293b;
color: #60a5fa;
border-left: 3px solid #3b82f6;
border-radius: 0 8px 8px 0;
}
/* Tool Cards Hover Effect */
.tool-card {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tool-card:hover {
transform: translateY(-5px);
border-color: #3b82f6;
box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
}
/* Smooth Entrance */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade {
animation: fadeIn 0.3s ease forwards;
}