sokobanya/index.html
2025-09-04 17:17:48 -04:00

58 lines
1.1 KiB
HTML

<html>
<meta charset="UTF-8">
<head>
<script src="assets/maps/microban.js"></script>
</head>
<body>
<style>
body {
font-family: monospace;
font-size: 30px;
background-color: #efd4af;
}
.container {
display: flex;
justify-content: center;
width: 100%;
}
#map {
white-space: pre;
}
#map > img {
height: 50px;
width: 50px;
}
#stats {
font-size: 20px;
margin-bottom: 8px;
}
pre {
color: darkblue;
margin-bottom: -19px;
}
</style>
<center>
<pre>
█▀ █▀█ █▄▀ █▀█ █▄▄ ▄▀█ █▄░█ █▄█ ▄▀█
▄█ █▄█ █░█ █▄█ █▄█ █▀█ █░▀█ ░█░ █▀█
</pre>
<div id="stats">
LEVEL: 0 |
MOVES: 0 |
LIVES: 10 |
POINTS: 0
</div>
</center>
<div class="container">
<div id="map"></div>
</div>
<script src="assets/script.js"></script>
</body>
</html>