/* stagit stylesheet adapted to the eversole.co vibe:
   cream #f1f6f0 background, slate #6d92ad accent, monospace, light weight.
   Selectors mirror upstream style.css so all stagit pages are covered. */

body {
	color: #222323;
	background-color: #f1f6f0;
	font-family: monospace;
	font-size: 1.25em;
	font-weight: 300;
	margin: 1em;
}

strong, b {
	font-weight: 600;
}

/* site nav injected by stagit-generate */
#sitenav {
	margin: 0 0 1em 0;
}
#sitenav a {
	text-transform: lowercase;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	margin: 0;
}

img, h1, h2 {
	vertical-align: middle;
}

img {
	border: 0;
}

a {
	color: #6d92ad;
}

a:target {
	background-color: #cccccc;
}

a.d,
a.h,
a.i,
a.line {
	text-decoration: none;
}

#blob a {
	color: #6d92ad;
}

#blob a:hover {
	color: #222323;
}

table thead td {
	font-weight: 600;
}

table td {
	padding: 0 0.4em;
}

#content table td {
	vertical-align: top;
	white-space: nowrap;
}

#branches tr:hover td,
#tags tr:hover td,
#index tr:hover td,
#log tr:hover td,
#files tr:hover td {
	background-color: #e2ebe0;
}

#index tr td:nth-child(2),
#tags tr td:nth-child(3),
#branches tr td:nth-child(3),
#log tr td:nth-child(2) {
	white-space: normal;
}

td.num {
	text-align: right;
}

.desc {
	color: #6d92ad;
}

hr {
	border: 0;
	border-top: 1px solid #6d92ad;
	height: 1px;
}

pre {
	font-family: monospace;
}

pre a.h {
	color: #4a6d87;
}

/* diff additions / deletions: muted green / red, on-vibe */
.A,
span.i,
pre a.i {
	color: #3d7a4a;
}

.D,
span.d,
pre a.d {
	color: #b14a4a;
}

pre a.h:hover,
pre a.i:hover,
pre a.d:hover {
	text-decoration: none;
}

/* rendered markdown (cmark-gfm splice) */
.md {
	white-space: normal;
}
.md pre,
.md code {
	color: #f1f6f0;
	background-color: #6d92ad;
	overflow-x: scroll;
}
.md pre code {
	background-color: transparent;
}
.md blockquote {
	color: #6d92ad;
	margin: 0;
	padding-left: 1em;
	border-left: 2px solid #6d92ad;
}
.md img {
	max-width: 100%;
}
.md li {
	list-style-type: "~> ";
}
.md table,
.md th,
.md td {
	border-collapse: collapse;
	border: 1px solid #6d92ad;
}
