
/* Sidebar mechanics */
.app {
	display: flex;
	min-height: 100vh;
}

.app aside {
	flex: 1 1 0;
	max-width: 300px;
	border-right: 2px dashed #f4f4f4;
}

.app aside h1 {
	font-size: 1rem;
	text-transform: uppercase;
	padding: 0 !important;
}

.app aside nav a {
	font-size: 1rem;
	text-decoration: none;
	display: block;
	padding: 0.25em;
	transition: 0.2s linear;
	margin: 0;
}

.app aside nav a:hover {
	border-right: 5px solid #5199ff;
}

.app main {
	flex: 1 1 0;
	padding: 2rem;
}

/* Footer mechanics */
footer {
	font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
	font-size: .6875em;
	background-color: #f4f4f4;
	margin-bottom: 0 !important;
    max-width: 100% !important;
    padding: 1em !important;
	padding-top: 2em !important;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

/* Gist mechanics */
p.gist {
  font-size: .8rem;
  display: block;
  overflow-x: auto;
  background-color: #f4f4f4;
  padding: 1em;
  border-radius: 4px;
}

/* To make them stick out as "keyboard keys" */
kbd {
  display: inline;
  white-space: nowrap;
  padding: 2px 2px;
  font-family: monospace, monospace;
  font-size: 0.9em;
  line-height: 1;
  color: #24292e;
  background-color: #f6f8fa;
  border: 1px solid #d1d5da;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #d1d5da;
}