/* {font-size:13pt;font-weight:normal;} */

:root{
	--theme-col: #fb5;
	--link-col: #f70;
	--link-hov-col: #f20;
	--bkg-col: #111;
	--advisory-col: #222;
	--advisory-bkg-col: #fc4;
	--code-col: #008000;
	--navbar-col: #222;
	--navlink-col: black;
	--navlink-hov-col: #f93;
	--warning-col: darkred;
	--success-col: darkgreen;
	--input-col: darkorange;
	--input-bkg-col: #333;
	--blog-date-col: grey;
	--semitransparent-bkg-col: rgba(0,0,0,50%);
}

@media (min-width: 64em) {
	.row {
		display: flex;
		flex-wrap: nowrap;
		flex-direction: row;
	}
	.col { flex-grow: 1; }
}

.grid {
	border-collapse: collapse;
}
.col {
	border: 6px double var(--theme-col);
	padding: 1em;
}

.user-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	list-style-type: none;
	padding: 0;
}
.user-list li {
	overflow: hidden;
	text-overflow: ellipsis; 
	white-space: nowrap;
	flex: 10em;
}
.user-list::after {
	content: "";
}

body {
	margin: auto;
	padding: 1em;
	max-width: 64em;
	font-family: "courier new", monospace;
	color: var(--theme-col);
	background: var(--bkg-col);
	word-wrap: break-word;
}
a {
	text-decoration: none;
	color: var(--link-col);
	font-weight: bold;
}
a:hover {
	color: var(--link-hov-col);
}
hr {
	border-color: var(--theme-col);
}
.text-center {
	text-align: center
}
.advisory {
	background: var(--advisory-bkg-col);
	color: var(--advisory-col);
	font-weight: bold;
	padding: 1em;
	border-radius: 0.25em;
}
h1 {
	text-transform: uppercase;
	color: var(--theme-col);
	font-family: monospace;
}

/* THEGOODS */
#fancyboi::before {
	content: "$ ";
}
@media (prefers-reduced-motion: no-preference) {
	@keyframes flash {
		50% { opacity: 0; }
	}
	@keyframes reveal {
		from { width: 2em; } /* Width of ::before */
		  to { width: 100%; }
	}
	#fancyboi {
		overflow: hidden;
		white-space: nowrap;
		animation: reveal 4s linear;
		text-overflow: "█";
	}
	#fancyboi::after {
		content: "█";
		animation: flash 0.5s step-end infinite;
	}
}
/* SDOOGEHT */

code {
	display: inline;
	background-color: var(--semitransparent-bkg-col);
	padding: 0 5 0 5;
}

.sourceCode {
 color:var(--code-col);
}

code > span.fl { 
 color: var(--code-col); 
}

 /* Style the navbar */
#navbar {
	overflow: hidden;
	background-color: var(--theme-col);
	color: var(--navbar-col);
	z-index: 99;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 0.25em;
	display: flex;
	justify-content: space-around;
}

#navbar a:hover {
	background-color: var(--navlink-hov-col);
}

/* Navbar links */
#navbar a {
	float: left;
	display: block;
	color: var(--navlink-col);
	text-align: center;
	padding: 14px;
	text-decoration: none;
}

/* Page content */
.content {
	padding-top: 5px;
}

input[type="text"],
textarea {
	background-color: var(--input-bkg-col);
	color: var(--input-col);
}

div.alert-warning {
	background-color: var(--warning-col);
}
div.alert-success {
	background-color: var(--success-col);
}

blockquote {
    border-left: 2px solid var(--theme-col);
    padding: 0.5em;
}	

/* Mobile */
@media (max-width: 768px) {
	td {
		display: block;
	}
}

em {
	font-style: italic;
	font-weight: bold;
}

.col.other {
	max-width: 300px;
}

a.blog-date {
	color: var(--blog-date-col);
	font-weight: unset;
}

div#rings {
	text-align: center;
}

.webring-title {
	margin-bottom: 0px;
}

div#badges {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: center;
    justify-content: space-evenly;
}
