aboutsummaryrefslogtreecommitdiffstats
path: root/templates/bingo.html
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-09-28 04:01:28 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-09-28 04:01:28 -0400
commit5cf139eac317f8934deff21aa3668bd3616962b9 (patch)
tree74fb2125a5c710a9a0c7f5e182489b414d5216fe /templates/bingo.html
parentafe79e8430302808004ac2f5b5cc7d21d4d5d170 (diff)
Add basic styling to bingo pagebingo_client
Diffstat (limited to 'templates/bingo.html')
-rw-r--r--templates/bingo.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/bingo.html b/templates/bingo.html
index e00543c..1305b9a 100644
--- a/templates/bingo.html
+++ b/templates/bingo.html
@@ -1,11 +1,12 @@
{{ define "title" }}Bingo{{ end }}
{{ define "content" }}
-<table>
+<main>
+<table class="bingoCard">
<tbody>
{{ range .Rows }}
<tr>
{{ range . }}
- <td class="{{ if .Checked }}checked{{ end }} {{ if not .Checkable }}locked{{ end }}">{{ .Text }}</td>
+ <td class="bingoTile {{ if .Checked }}checked{{ end }} {{ if not .Checkable }}locked{{ end }}">{{ .Text }}</td>
{{ end }}
</tr>
{{ else }}
@@ -13,4 +14,5 @@
{{ end }}
</tbody>
</table>
+</main>
{{ end }}