CoolFace
Apppublic

LinusAI/secureguard-austria

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css46 linesDownload Raw Back to root
1/* Base Styles */2html {3    scroll-behavior: smooth;4}5 6body {7    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;8    line-height: 1.6;9    color: #333;10}11 12/* Accessibility Focus Styles */13a:focus, button:focus, input:focus, textarea:focus, select:focus {14    outline: 3px solid #e3a300;15    outline-offset: 2px;16}17 18/* Skip to Content Link */19.skip-link {20    position: absolute;21    left: -9999px;22    top: 0;23    background: #005aa7;24    color: white;25    padding: 1rem;26    z-index: 100;27}28 29.skip-link:focus {30    left: 0;31}32 33/* Contrast Improvements for Accessibility */34@media (prefers-contrast: more) {35    body {36        color: #000;37    }38    39    .bg-primary {40        background-color: #003366 !important;41    }42    43    .bg-secondary {44        background-color: #cc8800 !important;45    }46}