initial commit

This commit is contained in:
schrom01
2022-11-17 09:58:26 +01:00
commit ba20bac6b8
14 changed files with 1432 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
.background { background: rgb(52, 166, 251);
table-layout: fixed;
border-spacing: 0; }
.background td { padding: 0; }
.lava { background: rgb(255, 100, 100); }
.wall { background: white; }
.actor { position: absolute; }
.coin { background: rgb(241, 229, 89); }
.player { background: rgb(64, 64, 64); }
.game {
overflow: hidden;
max-width: 600px;
max-height: 450px;
position: relative;
}
.lost .player {
background: rgb(160, 64, 64);
}
.won .player {
box-shadow: -4px -7px 8px white, 4px -7px 8px white;
}