CoolFace
Apppublic

dcap88/the-dark-coder-s-grimoire

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css64 linesDownload Raw Back to root
1@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=UnifrakturMaguntia&display=swap');2 3body {4    background-image: url('http://static.photos/black/1200x630/7');5    background-size: cover;6    background-attachment: fixed;7    background-position: center;8}9 10body::before {11    content: '';12    position: fixed;13    top: 0;14    left: 0;15    right: 0;16    bottom: 0;17    background-color: rgba(0, 0, 0, 0.85);18    z-index: -1;19}20 21.border-secondary {22    border-color: #5e0000;23}24 25.text-blood {26    color: #8b0000;27}28 29.bg-secondary {30    background-color: #5e0000;31}32 33.bg-primary {34    background-color: #222222;35}36 37.text-parchment {38    color: #f0e6d2;39}40 41.font-medieval {42    font-family: 'UnifrakturMaguntia', serif;43}44 45.font-grotesk {46    font-family: 'Space Grotesk', sans-serif;47}48 49/* Scrollbar styling */50::-webkit-scrollbar {51    width: 8px;52}53 54::-webkit-scrollbar-track {55    background: #222;56}57 58::-webkit-scrollbar-thumb {59    background: #5e0000;60}61 62::-webkit-scrollbar-thumb:hover {63    background: #8b0000;64}