:root {
	--color-white: white;
	--color-black: black;
	--color-blue: #038;
	--color-red: #800;
	--color-grey: grey;
	--color-athens-grey: #f2f4f7;
	--color-light-grey: #ccc;
	--color-yellow: #fffbdd;
}

body {
	color: var(--color-black);
	background-color: var(--color-white);

	font-family: monospace;
	font-size: medium;
}

h1, h2, h3, h4, h5, h6, h7, h8, h9 {
	padding: 0px;
	margin: 0px 0px 5px 0px;
}
p {
	padding: 0px;
	margin: 5px 0px 5px 0px;
}

a {
	color: var(--color-blue);
	text-decoration: none;
}
a:hover, ::selection {
	color: var(--color-white);
	background-color: var(--color-blue);
	text-shadow: none;
}
a:visited {
	color: var(--color-red);
}

header, main section {
	padding: 10px;
}
pre {
	padding: 0px;
	margin: 0px;
}
header p {
	margin: 5px 0px 5px 0px;
}
header p.clone {
	color: var(--color-grey);
}
header code {
	text-decoration: underline;
}
section, header {
	padding: 10px 10px 10px 10px;
}

header, main section:not(:last-of-type) {
	border-bottom: 3px solid var(--color-light-grey);
}


@media (max-width: 60em) {
	table td {
		display: table;
		padding: 0px !important; 
	}

	table tr {
		display: block;
		margin: 10px 0px 10px 0px;
	}
}

table {
	text-align: left;
	max-width: 60em;
	width: 100%;
}

table td.description {
	padding: 0.15em 0.5em;
}

table.commits td.date {
	font-style: italic;
	color: var(--color-grey);
}

table.commits td.author {
	color: var(--color-grey);
}

ul.tree {
	list-style-type: none;
	padding: 0px;
	margin: 0px 0px 5px 0px;
}

a.directory {
	font-weight: bold;
}

nav.breadcrumb, nav.breadcrumb ul, nav.breadcrumb li, nav.breadcrumb h2 {
	display: inline-block;
}

nav.breadcrumb ul {
	margin: 0px;
	padding: 0px;
	list-style: none
}

nav.breadcrumb ul li:not(:last-child):after  {
	color: var(--color-light-grey);
	padding: 8px;
	content: "/";
}

#readme {
	max-width: 60em;
	line-height: 1.5;
	text-align: justify;
}

@media (max-width: 60em) {
	
	#readme pre.raw { overflow: auto !important; }
}

#readme img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

#readme pre.raw {
	padding: 0px;
	margin: 0px;
	overflow: visible;
}

#readme pre {
	margin: 1em 0em 1em 0em;
	overflow: auto;
}

#readme pre code {
	width: auto;
	min-width: 100%;
	padding: 1em;
	box-sizing: border-box;
}

#readme code {
	display: inline-block;
	padding: .2em .4em;
	line-height: normal;
	border-radius: 5px;
	background: var(--color-athens-grey);
}

#readme p {
	padding: 5px 0px 5px 0px;
}

#readme a {
	text-decoration: underline;
}

pre.blob {
	overflow: auto;
}

pre.blob a {
	color: var(--color-grey);
	padding-right: 1ch;

	
	background-color: var(--color-white) !important;

	
	user-select: none;
}

pre.blob a:hover {
	color: var(--color-blue);
}

.highlighted, code:target {
	display: inline-block;
	min-width: 100%;
	background-color: var(--color-yellow);
}

dl {
	font-size: large;
}
dt em {
	font-style: normal;
	color: var(--color-grey);
}
dd {
	margin: 2px 0px 20px 10px;
}

ul.pager {
	text-align: center;
	list-style-type: none;
}
ul.pager li {
	display: inline-block;
}
ul.pager a.current {
	font-weight: bold;
}
ul.pager a::before {
	content: "[";
}
ul.pager a::after {
	content: "]";
}

