Files
chatmail-core/deltachat-ffi/Doxyfile.css
Sebastian Klähn db28c1bdc4 Update doxygen for cffi docs (#4136)
fix styling
2023-03-08 21:35:15 +01:00

29 lines
479 B
CSS

:root {
--accent: hsl(0 0% 70%);
}
@media (prefers-color-scheme: dark) {
:root {
--accent: hsl(0 0% 30%);
}
}
/* the code snippet frame, defaults to white which tends to get badly readable in combination with explaining text around */
div.fragment {
background-color: var(--accent);
border: 0;
padding: 1em;
border-radius: 6px;
}
code {
background-color: var(--accent);
padding-left: .5em;
padding-right: .5em;
border-radius: 6px;
}
li {
margin-bottom: .5em;
}