59 lines
977 B
CSS
59 lines
977 B
CSS
:root {
|
|
--bg-color: #000000;
|
|
--text-color: #FFFFFF;
|
|
--font-mono: 'JetBrains Mono', monospace;
|
|
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-mono);
|
|
background-color: var(--bg-color);
|
|
color: var(--text-color);
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Button styles that match vibe */
|
|
button {
|
|
background: none;
|
|
border: 1px solid var(--text-color);
|
|
color: var(--text-color);
|
|
font-family: inherit;
|
|
cursor: pointer;
|
|
padding: 4px 8px;
|
|
opacity: 0.8;
|
|
transition: opacity 0.2s, background 0.2s, color 0.2s;
|
|
}
|
|
|
|
button:hover {
|
|
opacity: 1;
|
|
background: rgba(255, 103, 0, 0.1);
|
|
}
|
|
|
|
a {
|
|
color: var(--text-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Scrollbar styling for blog */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #111;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #333;
|
|
border: 1px solid var(--text-color);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #444;
|
|
} |