mirror of
https://github.com/envmodules/modules.git
synced 2026-06-14 00:42:43 +08:00
Use html_css_files configuration option introduced in Sphinx 1.8 to setup CSS in a more conventional way. Also fix pre.literal-block specific styling as the 'section' div is not used anymore in newer Sphinx versions.
8 lines
178 B
CSS
8 lines
178 B
CSS
/* Render literal-block like terminal output */
|
|
.rst-content pre.literal-block {
|
|
border-radius: 8px;
|
|
font-size: 90%;
|
|
background-color: #1e1e1e;
|
|
color: #ffffff;
|
|
}
|