skip navigation

Links

Links to useful stuff...

View the CSS for this page
#links {
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 15px;
		/* flex-wrap: wrap; */
}

#links ul {
	list-style-type: none;
	margin:0;
	padding:0;
	font-size: 90%;
}

#links > div {
	padding:20px 20px 1em 0;
}

.done {
	color:#aaa;
}

.done::after {
	content:"- done";
	color: #888;
}

#links > div::before {
	content: attr(id);
	text-transform: capitalize;
	font-weight: bold;
	color: black;
	text-decoration: underline;
}

.svg-light {
	fill: var(--container-bg);
	width: 35px; height: 35px;
}