-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
72 lines (64 loc) · 1.32 KB
/
index.css
File metadata and controls
72 lines (64 loc) · 1.32 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
/**
* @license
* SPDX-License-Identifier: Apache-2.0
*/
body {
background-color: #fff; /* Light gray background */
color: #2a2a2a; /* Dark text color */
}
/* Animation for gentle fade-in of components */
@keyframes fade-in {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in {
animation: fade-in 0.6s ease-out forwards;
}
/* Animation for the main canvas image to zoom into focus */
@keyframes zoom-in {
from {
transform: scale(0.95);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
.animate-zoom-in {
animation: zoom-in 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
/* Animation for the wardrobe sheet to slide up from the bottom */
@keyframes slide-up {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
.animate-slide-up {
animation: slide-up 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
/* Custom scrollbar for a more integrated look */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #d1d5db; /* Light gray scrollbar */
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #9ca3af; /* Darker gray on hover */
}