/* Style the header */
.header {
    padding: 10px 16px;
}

header img {
    height: auto;
    width: 80px;
}

/* Page content */
.content {
    padding: 16px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
    padding-top: 170px;
}

.numbers {
    width: 65px;
}

:root {
    color-scheme: light only;
}

/* from https://github.com/sindresorhus/github-markdown-css */
.markdown-body, .markdown-input {
		box-sizing: border-box;
		min-width: 200px;
		max-width: 980px;
		margin: 0 auto;
		padding: 20px;
}

/* from http://markdowncss.github.io/air/ */
blockquote {
  margin: 0;
  border-left: 5px solid #7a7a7a;
  font-style: italic;
  padding: 1.33em;
  text-align: left;
}

@media (max-width: 767px) {
		.markdown-body, .markdown-input {
			  padding: 15px;
		}
		.sticky + .content {
			  padding-top: 100px;
		}
		.content {
			  padding: 8px;
		}
		[class*='col-'] {
			  margin: 5px 0;
			  padding-right: 5px;
		}
}

.wide {
  width: 100% important;
}
