<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--content-max-width: 100% !important;
}

/* -- Section -- */

.content-section {
	max-width: 800px;
	margin: auto;
}

/* -- Two Col Layout -- */

.content-row {
	display: flex;
	flex-wrap: wrap;
}

.content-col {
	gap: 10px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.content-col {
		width: 100%;
	}
}

/* -- Tabs -- */

/* Style the tab */
.tab {
	overflow: hidden;
	border: 1px solid #333;
	background-color: #111;
	color: #fff;
}

/* Style the buttons that are used to open the tab content */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #222;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #333;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #333;
	border-top: none;
}

.tabcontent.active {
	display: block !important;
}

.file-modified {
	color: darkorange;
}

.file-solution.file-modified {
	color: skyblue;
}

.file-added {
	color: limegreen;
}
</pre></body></html>