memory-void / style.css
secutorpro's picture
void *soul = mmap(NULL, INF, PROT_READ | PROT_WRITE | PROT_EXEC,
057e8b6 verified
raw
history blame contribute delete
671 Bytes
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #d1d5db;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #9ca3af;
}
.dark ::-webkit-scrollbar-thumb {
background: #4b5563;
}
.dark ::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
/* Syntax Highlighting Simulation for the C code block */
code {
color: #e5e7eb; /* gray-200 */
}
pre code .keyword { color: #c084fc; } /* purple-400 */
pre code .type { color: #60a5fa; } /* blue-400 */
pre code .number { color: #a3e635; } /* lime-400 */