Spaces:
Running
Running
File size: 1,572 Bytes
9529790 d463508 9529790 d463508 9529790 d463508 9529790 d463508 9529790 d463508 9529790 d463508 9529790 | 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 79 80 81 82 83 84 85 86 87 88 89 90 91 |
/* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
-webkit-tap-highlight-color: transparent;
}
/* Dark mode optimized colors */
.dark {
--bg-primary: #111827;
--bg-secondary: #1F2937;
--text-primary: #F3F4F6;
--text-secondary: #9CA3AF;
--highlight-green: #10B981;
--highlight-red: #EF4444;
--highlight-yellow: #F59E0B;
--highlight-purple: #8B5CF6;
}
/* Touch-friendly elements */
button, a {
-webkit-user-select: none;
user-select: none;
}
.note-btn {
transition: transform 0.1s ease;
}
.note-btn:active {
transform: scale(0.9);
}
.stat-card {
transition: all 0.3s ease;
}
.stat-card:hover {
transform: translateY(-2px);
}
/* Room card animations */
.room-card {
transition: all 0.2s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.room-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
/* Status indicators */
.status-clean {
border-left-color: #10B981;
}
.status-dirty {
border-left-color: #EF4444;
}
.status-in-progress {
border-left-color: #F59E0B;
}
.status-maintenance {
border-left-color: #8B5CF6;
}
/* Dark mode overrides */
.dark .status-clean {
border-left-color: #10B981;
}
.dark .status-dirty {
border-left-color: #EF4444;
}
.dark .status-in-progress {
border-left-color: #F59E0B;
}
.dark .status-maintenance {
border-left-color: #8B5CF6;
}
/* Responsive adjustments */
@media (max-width: 640px) {
.room-card {
padding: 0.75rem;
}
} |