diff options
author | pommicket <pommicket@gmail.com> | 2025-09-18 17:48:35 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-18 17:48:35 -0400 |
commit | 094646941a2d2d942e92f35f8f6e26b3ae53d0f7 (patch) | |
tree | 9c84b595c0b7b65044014e9043fd77565c7608b8 | |
parent | 78a5b3973411ef2a0a43fd84644563157efc8624 (diff) |
Add icon
-rw-r--r-- | icon.svg | 4 | ||||
-rw-r--r-- | pub/icon.png | bin | 0 -> 6176 bytes | |||
-rw-r--r-- | pub/index.html | 6 |
3 files changed, 7 insertions, 3 deletions
diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..03707bf --- /dev/null +++ b/icon.svg @@ -0,0 +1,4 @@ +<svg version="1.1" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> + <rect x="0" y="0" width="100" height="100" rx="15" ry="15" fill="#eca" /> + <text x="50" y="86" text-anchor="middle" font-weight="bold" font-size="100" style="font-family: Helvetica, sans-serif;">?</text> +</svg> diff --git a/pub/icon.png b/pub/icon.png Binary files differnew file mode 100644 index 0000000..af19856 --- /dev/null +++ b/pub/icon.png diff --git a/pub/index.html b/pub/index.html index 046a43f..5ffdcb6 100644 --- a/pub/index.html +++ b/pub/index.html @@ -3,8 +3,8 @@ <head> <meta charset="utf-8"> <meta content="width=device-width,initial-scale=1" name="viewport"> - <title>Blank Plays</title> - <link rel="icon" href="data:,"><!--TODO--> + <title>BlankPlays</title> + <link rel="icon" href="/icon.png"> <style> body { font-family: Helvetica, sans-serif; @@ -198,7 +198,7 @@ </div> <div id="select-container"></div> <div id="stats" style="display:none;"> - Score: <progress id="score-meter" min="0" max="100"></progress> + Score: <progress id="score-meter" max="100"></progress> <span id="score-span"></span>/100<br> Correct plays identified: <span id="correct-plays"></span><br> Incorrect plays guessed: <span id="incorrect-plays"></span><br> |