CoolFace
Apppublic

Dedsecaibagley/codehack-academy-learn-pwn-in-style

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css56 linesDownload Raw Back to root
1@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');2 3* {4    font-family: 'Inter', sans-serif;5}6 7code, pre {8    font-family: 'JetBrains Mono', monospace;9}10 11.bg-gradient-dark {12    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);13}14 15.hover-scale {16    transition: transform 0.3s ease;17}18 19.hover-scale:hover {20    transform: scale(1.03);21}22 23.shadow-red-glow {24    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);25}26 27.animate-pulse-slow {28    animation: pulse 3s infinite;29}30 31@keyframes pulse {32    0%, 100% {33        opacity: 1;34    }35    50% {36        opacity: 0.7;37    }38}39 40/* Custom scrollbar */41::-webkit-scrollbar {42    width: 8px;43}44 45::-webkit-scrollbar-track {46    background: #1F2937;47}48 49::-webkit-scrollbar-thumb {50    background: #EF4444;51    border-radius: 4px;52}53 54::-webkit-scrollbar-thumb:hover {55    background: #DC2626;56}