website/resources/code.css

47 lines
836 B
CSS
Raw Normal View History

2025-02-06 18:16:33 -05:00
/* Set the font for code blocks */
code {
font-family: "Iosevka Web", monospace;
}
/* Styling for inline code blocks */
:not(pre) > code {
padding: 0 0.25rem;
2025-02-09 18:09:06 -05:00
border-radius: 0.25rem;
2025-02-06 18:16:33 -05:00
}
/* Styling for fenced code blocks */
pre > code {
display: block;
padding: 1rem;
border-radius: 0.55rem / 0.5rem;
word-wrap: normal;
overflow: auto;
}
pre {
width: 90%;
2025-02-09 22:27:17 -05:00
}
/* Styling for unit tests */
.unit-test {
width: 90%;
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
border-radius: 0.55rem / 0.5rem;
}
.unit-test > span {
display: flex;
flex-direction: row;
align-items: center;
padding: 0.5rem;
border-radius: 0.55rem / 0.5rem;
}
.unit-test > pre {
2025-02-10 18:30:33 -05:00
width: 100%;
2025-02-09 22:27:17 -05:00
}
.unit-test i {
font-size: 1.5rem;
margin-right: 0.5rem;
2025-02-06 18:16:33 -05:00
}