view css/style.css @ 69:2e645b936727

*: huge overhaul 1. the INDEX PAGE was broken for so long, but I really could not have been arsed to fix it. 2. all major css has been moved to css/style.css 3. png files are now all jpg files because having pngs on a website is overkill 4. update libopenmpt, not sure if it works (local JS doesn't work on my browser) 5. libopenmpt is now the JS-only version because browsers like pale moon still don't support WASM
author Paper <mrpapersonic@gmail.com>
date Sat, 30 Sep 2023 00:34:22 -0400
parents
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;
}