Skip to content

Commit

Permalink
silly portal idea
Browse files Browse the repository at this point in the history
  • Loading branch information
k2xl committed Dec 31, 2024
1 parent f939dfb commit 5eab77d
Show file tree
Hide file tree
Showing 3 changed files with 579 additions and 0 deletions.
52 changes: 52 additions & 0 deletions pages/[subdomain]/abc/SokobanPortalGame.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
.board {
display: inline-block;
border: 2px solid #333;
}

.board-row {
display: flex;
}

.tile {
width: 40px;
height: 40px;
box-sizing: border-box;
border: 1px solid #999;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
}

.tile.empty {
background-color: #eee;
}

.tile.wall {
background-color: #444;
}

.tile.player {
background-color: #a0e;
color: #fff;
}

.tile.crate {
background-color: #ca2;
color: #000;
}

.tile.ice {
background-color: #0cf;
color: #003;
}

.tile.portal-orange {
background-color: orange;
color: #fff;
}

.tile.portal-blue {
background-color: blue;
color: #fff;
}
Loading

0 comments on commit 5eab77d

Please sign in to comment.