12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- :Author: CYBERDEViL
- :Contact: cyberdevilnl at protonmail d0t com
- :Copyright: This stylesheet has been placed in the public domain.
- Stylesheet for use with Docutils.
- https://docutils.sourceforge.io/docs/howto/html-stylesheets.html
- */
- @import url(html4css1.css);
- /*indent sections a little*/
- .section {
- margin-left: 12px;
- }
- /*indent section contents a little*/
- p, pre, table {
- margin-left: 12px;
- }
- pre {
- background-color: #efefef;
- border: 1px solid #dfdfdf;
- }
- h1 {
- background-color: #cfcfcf;
- }
- img.align-right {
- clear: right ;
- float: right ;
- margin-left: 1em
- }
|