47 lines
769 B
CSS
47 lines
769 B
CSS
body {
|
|
background: #221c1c;
|
|
color: #fdfaff;
|
|
font-family: Serif;
|
|
}
|
|
|
|
a {
|
|
color: #FFB2C6ED;
|
|
}
|
|
|
|
.links {
|
|
text-align: center;
|
|
}
|
|
|
|
.content {
|
|
max-width: 550px;
|
|
text-align: justified;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.row {
|
|
display: grid;
|
|
grid-template-columns: 50% 50%;
|
|
gap: 0px 2px;
|
|
grid-auto-flow: row;
|
|
grid-template-areas:
|
|
"one two";
|
|
}
|
|
|
|
.one { grid-area: one; }
|
|
|
|
.two { grid-area: two; }
|
|
|
|
pre {
|
|
border: 1px solid #2d2d2d; /* Dark border for pre elements */
|
|
border-radius: 5px;
|
|
padding: 1em;
|
|
overflow-x: auto;
|
|
background: #151515; /* Darker background for code blocks */
|
|
}
|
|
code {
|
|
background: #222; /* Slightly lighter background for inline code */
|
|
color: #f0f0f0; /* Light text for code */
|
|
}
|
|
pre code {
|
|
background: none;
|
|
}
|