ysn-rfd's picture
Upload 302 files
057576a verified
raw
history blame
914 Bytes
/* 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;
}
}