add replay functionality

This commit is contained in:
Zutatensuppe 2020-12-22 22:35:09 +01:00
parent 4158aa0854
commit 083fc0463c
13 changed files with 452 additions and 125 deletions

View file

@ -22,6 +22,7 @@ a:hover { color: var(--link-hover-color); }
.scores {
position: absolute;
right: 0;
top: 0;
background: var(--bg-color);
padding: 5px;
@ -32,6 +33,7 @@ a:hover { color: var(--link-hover-color); }
.timer {
position: absolute;
left: 0;
top: 0;
background: var(--bg-color);
padding: 5px;
@ -41,6 +43,8 @@ a:hover { color: var(--link-hover-color); }
.menu {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
background: var(--bg-color);
@ -192,3 +196,9 @@ input:focus {
background: var(--bg-color);
padding: 5px;
}
.game-replay {
position: absolute;
top: 0;
right: 0;
}