excel-code-wizard / style.css
Azerty2197's picture
Give me instructions how to add code in exel
a87bb89 verified
Raw
History Blame Contribute Delete
579 Bytes
/* Custom styles that can't be achieved with Tailwind */
pre {
font-family: 'Courier New', Courier, monospace;
line-height: 1.5;
tab-size: 4;
}
kbd {
font-family: 'Courier New', Courier, monospace;
font-size: 0.9em;
}
/* Smooth scroll behavior */
html {
scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}