CoolFace
Apppublic

Remy88/vulnvigil-exploit-watchtower

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
style.css52 linesDownload Raw Back to root
1/* Base styles for the vulnerability tracking application */2body {3    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;4    line-height: 1.6;5    color: #1a1a1a;6}7 8.container {9    max-width: 1280px;10}11 12/* Custom badge styles */13.badge-critical {14    background-color: #FEE2E2;15    color: #B91C1C;16}17 18.badge-high {19    background-color: #FFEDD5;20    color: #9A3412;21}22 23.badge-medium {24    background-color: #FEF3C7;25    color: #92400E;26}27 28.badge-low {29    background-color: #D1FAE5;30    color: #065F46;31}32 33/* Responsive table adjustments */34@media (max-width: 768px) {35    table {36        display: block;37        width: 100%;38        overflow-x: auto;39        -webkit-overflow-scrolling: touch;40    }41}42 43/* Hover effects for interactive elements */44a, button {45    transition: all 0.2s ease;46}47 48/* Focus styles for accessibility */49:focus {50    outline: 2px solid #3B82F6;51    outline-offset: 2px;52}