diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-09-28 04:01:28 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-09-28 04:01:28 -0400 |
| commit | 5cf139eac317f8934deff21aa3668bd3616962b9 (patch) | |
| tree | 74fb2125a5c710a9a0c7f5e182489b414d5216fe /static/styles.css | |
| parent | afe79e8430302808004ac2f5b5cc7d21d4d5d170 (diff) | |
Add basic styling to bingo pagebingo_client
Diffstat (limited to 'static/styles.css')
| -rw-r--r-- | static/styles.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..9102d3b --- /dev/null +++ b/static/styles.css @@ -0,0 +1,25 @@ +main { + display: flex; + flex-direction: column; + align-items: center; +} + +.bingoCard { + height: 90vh; + width: 80vw; + border: 0.5em solid black; +} + +.bingoTile { + font-size: 24pt; + border: 2pt double green; + text-align: center; +} + +.bingoTile:hover:not(.locked) { + border-color: red; +} + +.bingoTile:active:not(.locked) { + border-color: blue; +}
\ No newline at end of file |
