mirror of
https://github.com/thomiceli/opengist.git
synced 2026-08-07 07:14:49 +00:00
27 lines
593 B
CSS
Vendored
27 lines
593 B
CSS
Vendored
@import "katex/dist/katex.min.css";
|
|
|
|
.jupyter.notebook {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.jupyter.notebook pre {
|
|
font-size: 0.8em !important;
|
|
}
|
|
|
|
.jupyter.notebook .jupyter-cell {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.jupyter.notebook .jupyter-cell.code-cell {
|
|
filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, 0.5));
|
|
}
|
|
|
|
/*
|
|
* A hack to ensure that Jupyter output images are always rendered with a
|
|
* neutral background color, even if the image itself does not have one, since
|
|
* Jupyter usually outputs images with transparent or light backgrounds.
|
|
*/
|
|
.dark .jupyter-output img {
|
|
background-color: #888;
|
|
}
|