File size: 914 Bytes
057576a | 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 | /* Additional custom styles for the app */
/* Smooth transitions for theme switching */
* {
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
/* Custom focus styles */
.focus-ring:focus {
outline: 2px solid #3b82f6;
outline-offset: 2px;
}
/* Mobile optimizations */
@media (max-width: 768px) {
.mobile-hidden {
display: none;
}
.mobile-full {
width: 100vw;
height: 100vh;
}
}
/* Print styles */
@media print {
.no-print {
display: none !important;
}
}
/* High contrast mode support */
@media (prefers-contrast: high) {
.btn-primary {
border: 2px solid currentColor;
}
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
} |