-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (39 loc) · 682 Bytes
/
styles.css
File metadata and controls
48 lines (39 loc) · 682 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
39
40
41
42
43
44
45
46
47
48
/* Animations */
.fade-in {
animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#map-container {
height: 500px;
width: 100%;
z-index: 0;
}
.hide-scroll::-webkit-scrollbar {
display: none;
}
.property-card {
transition: all 0.3s ease;
}
.property-card:hover {
transform: translateY(-4px);
}
/* Dark Mode Map Filter */
.dark .map-tiles {
filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}
/* Modal Transitions */
.modal-bg {
transition: opacity 0.3s ease;
}
.modal-content {
transition: transform 0.3s ease;
}