<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	see https://github.com/google/code-prettify/blob/master/README.md 
	for the prettyprint readme.
*/

pre ol.linenums
{
	margin-left: 20px;
}

pre ol.linenums &gt; li 
{
	/*lists all line numbers*/
	list-style-type: decimal; 

	/*linenum font color*/
	color:#484848;

	border-left-style: dashed;
    border-left-width: 1px;
	border-left-color: #888888;

	padding-left: 8px !important;
	padding-top: 1px;
	
	/*sets background color for every second line*/
	background: #ada795;
}

pre.scroll
{
	max-height: 400px;
	overflow-y: scroll;
}

pre.rounded
{
	border-radius: 5px;
}

pre.inline
{
	display: inline-block !important;
}

pre.wrap
{
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

pre
{
	display: block;
	text-align:left !important;
	background: #ada795;

	/*picks the first available font and resizes*/
	font-family: DejaVu Sans Mono, Liberation Mono, Consolas, Ubuntu Mono, Courier New;
	font-size: 85%;
	tab-size: 4;

	max-width: 90%;
	overflow: auto;
	
	border-style: solid;
    border-width: 1px;
	border-color: #888888;

	margin-top: 1px;
	margin-bottom: 5px;

	padding-left: 8px !important; 
	padding-right:5px !important;
	padding-top:0 !important;
	padding-bottom:0 !important;

	-moz-box-shadow: 3px 3px 5px #484848;
    -webkit-box-shadow: 3px 3px 5px #484848;
    box-shadow: 3px 3px 5px #484848;
}
</pre></body></html>