
@import "/fonts/fonts.css";

@import "style2.css";

/* copy of main */
div.document {
    margin: 0 auto;
    max-width: 50em;
    padding: 0;
    clear: both;
}

/* copy of nav h1 */
h1.title {
    font-size: xx-large;
    margin: 0 auto;

    padding: 0.5em 0;
    background: var(--header-bg);
    border-bottom: solid 1px var(--header-border);
    margin-bottom: 1em;
}

/* copy of code */
span.pre {
    font-family: "Fira Mono", "Go Mono", monospace;
    color: var(--code-color);
    white-space: pre-wrap;
}

/* Tables */

table.docutils {
	border-collapse: collapse;
	border: 1px solid grey; 
}

table.docutils thead th {
	color: black;
	background: #CCE;
}

table.docutils td {
	border: 1px solid grey;
	padding: 3pt;
}


/* Definition lists */

dl.docutils dt {
	font-weight: bold;
	margin-top: 1em;
}

dl.docutils dd p.first {
	margin-top: 0;
}


