view css/style.css @ 70:629553bdc8aa

music: fix metadata fetching in chiptune2.js turns out the function for getting ascii strings was deprecated, and now I have to use a custom build of libopenmpt because there's no other way to do it. YAY!
author Paper <mrpapersonic@gmail.com>
date Sat, 30 Sep 2023 02:32:41 -0400
parents 2e645b936727
children ff98f97603ca
line wrap: on
line source

.navbar {
	text-align: left; /* Override body text align */
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.container {
	width: 98%;
	margin-top: 1%;
}
body {
	color: white;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: center;
	text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
}
div.box {
	background-color: rgba(0, 0, 0, 0.5);
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5) inset;
	color: white;
	text-align: center;
	margin: 1% auto;
	padding: 15px;
	max-width: 500px;
}
.center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
a:link, a:visited, a:hover, a:active {
	color: #ff6600;
}
/* Only in index.html */
div.logos {
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
	image-rendering: pixelated;
}