square representations of apartments
This commit is contained in:
@@ -1,15 +1,22 @@
|
||||
/* Custom styles for multi-unit (apartment) markers */
|
||||
.multi-unit-marker {
|
||||
border-radius: 0; /* Makes it square */
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
|
||||
border: 2px solid white;
|
||||
transition: transform 0.1s ease-in-out, width 0.1s ease-in-out, height 0.1s ease-in-out;
|
||||
background: transparent !important;
|
||||
border: none !important;
|
||||
transition: transform 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.apartment-marker {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 0; /* Square shape */
|
||||
border-radius: 0 !important; /* Square shape */
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.apartment-marker:hover {
|
||||
transform: scale(1.1);
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.4) !important;
|
||||
}
|
||||
|
||||
/* Style for when a marker is being moved */
|
||||
|
||||
Reference in New Issue
Block a user