diff options
author | stale <redkugelblitzin@gmail.com> | 2022-07-01 20:53:11 -0300 |
---|---|---|
committer | stale <redkugelblitzin@gmail.com> | 2022-07-01 20:53:11 -0300 |
commit | fe851ee7ea31caa48a6d9a8ce1ddbb30854f2321 (patch) | |
tree | 27a5f19799d7c3ba654ea09ac3eb41ef7d9dfde0 /assets | |
parent | c68dc16bef476203a4424c4b857f16eeb8f0e119 (diff) |
more config options and a good refactoring
Diffstat (limited to 'assets')
-rw-r--r-- | assets/VT323.ttf (renamed from assets/VT323-Regular.ttf) | bin | 149688 -> 149688 bytes | |||
-rw-r--r-- | assets/favicon.ico | bin | 0 -> 1307 bytes | |||
-rw-r--r-- | assets/index.html | 2 | ||||
-rw-r--r-- | assets/room.html | 4 | ||||
-rw-r--r-- | assets/style.css | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/assets/VT323-Regular.ttf b/assets/VT323.ttf Binary files differindex 6aec599..6aec599 100644 --- a/assets/VT323-Regular.ttf +++ b/assets/VT323.ttf diff --git a/assets/favicon.ico b/assets/favicon.ico Binary files differnew file mode 100644 index 0000000..646857a --- /dev/null +++ b/assets/favicon.ico diff --git a/assets/index.html b/assets/index.html index cce9248..c67e4d6 100644 --- a/assets/index.html +++ b/assets/index.html @@ -4,7 +4,7 @@ <meta charset="UTF-8"> <title>websweeper</title> <meta name="viewport" content="width=device-width,initial-scale=1"> - <link rel="stylesheet" type="text/css" href="./s.css"> + <link rel="stylesheet" type="text/css" href="./style.css"> </head> <body> <div class="cent"> diff --git a/assets/room.html b/assets/room.html index 4dadc6b..e128bc7 100644 --- a/assets/room.html +++ b/assets/room.html @@ -4,7 +4,7 @@ <meta charset="UTF-8"> <title>websweeper</title> <meta name="viewport" content="width=device-width,initial-scale=1"> - <link rel="stylesheet" type="text/css" href="../s.css"> + <link rel="stylesheet" type="text/css" href="../style.css"> </head> <body> <div> @@ -26,5 +26,5 @@ </div> </body> <script src="https://unpkg.com/fflate"></script> - <script src="../c.js"></script> + <script src="../client.js"></script> </html> diff --git a/assets/style.css b/assets/style.css index 49e832e..4d12602 100644 --- a/assets/style.css +++ b/assets/style.css @@ -1,6 +1,6 @@ @font-face { font-family: vt323; - src: url("./f.ttf"); + src: url("./VT323.ttf"); } #board-container { font-size: 80px; |