-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
4905729 get roughly-working client-server interactions
- Loading branch information
1 parent
dd71efb
commit bedf114
Showing
101 changed files
with
2,230 additions
and
1,452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,6 +82,7 @@ | |
"gameplay", | ||
"hinderance", | ||
"hitbox", | ||
"jank", | ||
"lifestages", | ||
"lifecycle", | ||
"millis", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
@import "./home.css"; | ||
@import "./colourctrl.css"; | ||
@import "./setup.css"; | ||
@import "./play.css"; | ||
@import "./groupjoiner.css"; | ||
@import "./colourctrl.css"; | ||
@import "./grouplobby.css"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
.screen-lobby { | ||
display: grid; | ||
justify-items: center; | ||
align-content: center; | ||
} | ||
|
||
.screen-lobby--client-info-section { | ||
--spacing: 0.2em; | ||
--border-radius: 0.8em; | ||
gap: 0.2em; margin: 0.2em; | ||
height: 6em; max-height: 80vh; | ||
width: 15em; /* max-width: 30vw; */ | ||
display: grid; | ||
grid-template-rows: 1fr 1fr; | ||
} | ||
|
||
.screen-lobby--teams-section { | ||
display: grid; | ||
} | ||
|
||
.screen-lobby--team { | ||
} | ||
|
||
.screen-lobby--player { | ||
max-width: 20em; | ||
display: grid; | ||
grid-template-columns: 3em 2em 1fr; | ||
} | ||
.screen-lobby--player * { | ||
pointer-events: none; | ||
} | ||
.screen-lobby--player__name { | ||
justify-self: start; | ||
padding-inline-start: 0.5em; | ||
} | ||
|
||
.screen-lobby .screen--next-button:disabled { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.