Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 6 additions & 3 deletions style.css → Main/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ body {
}

.wrapper {
width: 65vmin;
height: 70vmin;
width: 80vmin;
display: flex;
flex-direction: column;
border-radius: 5px;
Expand All @@ -35,11 +34,15 @@ body {

.play-board {
width: 100%;
height: 100%;
aspect-ratio: 1;
display: grid;
grid-template-rows: repeat(30, 1fr);
grid-template-columns: repeat(30, 1fr);
background-color: #212837;
background-image:
repeating-linear-gradient(0deg, #2a3142 0px, #2a3142 1px, transparent 1px, transparent),
repeating-linear-gradient(90deg, #2a3142 0px, #2a3142 1px, transparent 1px, transparent);
background-size: calc(100% / 30) calc(100% / 30);
}

.play-board .food {
Expand Down
Loading