CoolFace
Apppublic

usr777/codeguardian-hub

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css47 linesDownload Raw Back to root
1/* Custom styles for GitHub-like design */2@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');3 4* {5    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;6}7 8body {9    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;10}11 12/* Smooth transitions for dark mode */13* {14    transition-property: color, background-color, border-color;15    transition-duration: 200ms;16    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);17}18 19/* Custom scrollbar */20::-webkit-scrollbar {21    width: 8px;22}23 24::-webkit-scrollbar-track {25    background: #f6f8fa;26}27 28.dark ::-webkit-scrollbar-track {29    background: #24292f;30}31 32::-webkit-scrollbar-thumb {33    background: #d0d7de;34    border-radius: 4px;35}36 37.dark ::-webkit-scrollbar-thumb {38    background: #424a53;39}40 41::-webkit-scrollbar-thumb:hover {42    background: #afb8c1;43}44 45.dark ::-webkit-scrollbar-thumb:hover {46    background: #57606a;47}