/* Reduce max size of bootsrap container */
.container-sm {
	max-width: 960px;
}

/* Definition list item, move a little to the right */
dd {
	margin-left: 3rem;
}

img {
	max-width: 100%;
}

/* This is to remove underline and blue colour for links */
a.clean {
	text-decoration: none;
	color: inherit;
}

/* Small text highlight when hovering over with mouse */
a.clean:hover {
	text-shadow: 0 0 2px;
}

/* Quote styling, default boostrap one is not good. */
blockquote:not(figure blockquote) {
	text-align: left;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 1px solid;
}

/* Code block styling */
pre {
	tab-size: 2;
	padding: 0.5rem;
	border: 1px solid;
	background-color: black;
}

/* In case link is long, break it */
a {
	overflow-wrap: break-word;
}

/* START of no JS burger menu*/
/* Removes the summary drop down arrow */
summary.burger-summary {
	display: block;
}

/* Removes the summary drop down arrow for safari*/
summary.burger-summary::-webkit-details-marker {
	display:none;
}

/* On close, hide options */
details.navbar-toggle-details + div {
	display: none;
}
/* On open, show options */
details.navbar-toggle-details[open] + div {
	display: block;
}

/* END of no JS burger menu using checkbox*/


