Files

30 lines
969 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
html, body { height: 100%; overflow: hidden; }
body {
background-color: #161210;
background-image: url(images/logo.svg), linear-gradient(90deg, transparent 49.5%, rgb(228 98 44 / 7%) 50%, transparent 50.5%), linear-gradient(rgb(228 98 44 / 5%) 1px, transparent 1px);
background-position: center, 0 0, 0 0;
background-repeat: no-repeat, repeat, repeat;
background-size: 30%, 70px 70px, 7px 7px;
}
html[data-theme="light"] body {
background-color: #f1f1e9;
background-image: url(images/logo.svg), linear-gradient(90deg, transparent 49.5%, rgb(17 33 43 / 5%) 50%, transparent 50.5%), linear-gradient(rgb(17 33 43 / 4%) 1px, transparent 1px);
}
</style>
<script>
try {
if (document.cookie.indexOf('colorMode=light') > -1) {
document.documentElement.setAttribute('data-theme', 'light');
}
} catch (error) { }
</script>
</head>
<body></body>
</html>