
/* === Grid=== */
#main section.section {
	padding-top: 4em;
	padding-bottom: 4em;
}
#main section .section-content .row {
	margin-left: 0;
	margin-right: 0;
}
#main section .section-content .row > .column {
	padding: 0;
}

@media only screen and (max-width: 1068px) {
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 0;
	}
}

@media only screen and (max-width: 735px) {
	#main section.section {
		padding-top: 3em;
		padding-bottom: 3em;
	}
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 0;
	}
}

/* code colors */
.terminal {
	margin-top: 1em;
	margin-bottom: 2em;
	background-color: #f9fafa;
}

.bg-light .terminal {
	background-color: #fff;
}

.terminal pre {
	border: none;
	border-left: 1px solid #dadada;
	border-radius: 0;
	margin-left:  1em;
	padding-left: 1em;
	background-color: transparent;
}

.terminal pre code {
	color: #ad8200;
}

.terminal pre code .comment {
	color: #a13535;
}

.terminal pre code .method {
	color: #10295e;
}

.terminal pre code .name {
	color: #03A10e;
}

.terminal pre code .num {
	color: #777777;
}

.terminal pre code .text {
	color: #000000;
}

.terminal pre code .title {
	color: #29085d;
}

/* code colors dark mode */
body[data-color-scheme="dark"].dmf .terminal {background-color: rgba(255,255,255,0.1);}
body[data-color-scheme="dark"].dmf .bg-light .terminal {background-color: #000000;}
html body[data-color-scheme="dark"].dmf .terminal pre {background-color: transparent;}
body[data-color-scheme="dark"].dmf .terminal pre code {border-color:rgba(214,214,214,0.2); color: #ad8200;}
body[data-color-scheme="dark"].dmf .terminal pre code .comment {color: #e16a6a;}
body[data-color-scheme="dark"].dmf .terminal pre code .method {color: #497ff1;}
body[data-color-scheme="dark"].dmf .terminal pre code .name {color: var(--fill-green);}
body[data-color-scheme="dark"].dmf .terminal pre code .num {color: #9ca5b5;}
body[data-color-scheme="dark"].dmf .terminal pre code .text {color: #eeeeee;}
body[data-color-scheme="dark"].dmf .terminal pre code .title {color: #b48af7;}
