/*
2018 David DiPaola, licensed under CC0

The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law.

You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See https://creativecommons.org/publicdomain/zero/1.0/
*/

/* color scheme:
	fg: #A8A89B
	bg: #0F0F0F
*/
* {
	color:      #A8A89B;
	background: #0F0F0F;
}
em {
	background: #A8A89B;
	color:      #0F0F0F;
}
table.table-border,table.table-border th,table.table-border td {
	border-color: #A8A89B;
}
table.table-border th,table.table-border th * {
	color:      #0F0F0F;
	background: #A8A89B;
}
/* code color scheme */
code,pre {
	color:      #CB4B16;
	background: #000000;
}

/* table layout */
table.table-border,table.table-border * {
	border-collapse: collapse;
	border: 1px solid;
}
table.table-border th,td {
	padding: 2px;
}

/* functional stuff */
.scroll-horizontal {
	overflow-x: auto;
	white-space: nowrap;
}

/* stagit */
html body div#content pre {
	color:      #A8A89B;
	background: #000000;
}
html body div#content pre .h {
	background: #A8A89B;
	color:      #000000;
}
html body div#content pre .i {
	color: #00FF00
}
html body div#content pre .d {
	color: #FF0000
}
/* stagit */

