summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-02-20 22:40:17 +0100
committernea <nea@nea.moe>2023-02-20 22:40:17 +0100
commit050101ab94539406bc3ecd7dbf4f4122473389ea (patch)
tree25c782f5d757e8e480398eb91570ac21f29ed155
parent09a99300b76e4ae2da31526b725648bd4a3fd021 (diff)
downloadchess-050101ab94539406bc3ecd7dbf4f4122473389ea.tar.gz
chess-050101ab94539406bc3ecd7dbf4f4122473389ea.tar.bz2
chess-050101ab94539406bc3ecd7dbf4f4122473389ea.zip
info
-rw-r--r--index.html59
1 files changed, 57 insertions, 2 deletions
diff --git a/index.html b/index.html
index 4fb02f5..2a68cc2 100644
--- a/index.html
+++ b/index.html
@@ -14,11 +14,18 @@
box-sizing: border-box;
}
- #app {
+ #app, #advertisment {
margin: 0 auto;
width: fit-content;
}
+ #advertisment a{
+ font-size: 0.8em;
+ color: gray;
+ text-decoration: none!important;
+ }
+
+
.board {
border: 2px solid black;
font-size: 20px;
@@ -52,6 +59,32 @@
background: olive;
}
+ #admodal {
+ display: none;
+ position: fixed;
+ top: 25%;
+ left: 25%;
+ z-index: 10;
+ margin: 0 auto;
+ width: 50%;
+ background: aliceblue;
+ border: beige solid 1px;
+ box-sizing: border-box;
+ padding-left: 3em;
+ }
+ #admodal.visible {
+ display: block;
+ }
+
+ #admodal ul {
+ margin: 0 auto;
+ }
+
+ #admodal div {
+ position: absolute;
+ right: 0.5em;
+ }
+
#warn {
display: block;
position: fixed;
@@ -110,12 +143,34 @@
<div id="app">
<p class="status">You are <b>white</b></p>
</div>
+<div id="advertisment">
+ <a onclick="adinfo()" href="javascript:void(0)">Info</a>
+</div>
<div id="choice" class="">
</div>
+<div id="admodal">
+ <div><a href="#" onclick="adinfoClose()">x</a></div>
+ <ul>
+ <li>Created by Linnea Gräf</li>
+ <li><a href="https://git.nea.moe/nea/chess">Source</a></li>
+ <li><a href="https://kitty.social/@nea89">Fediverse / Mastodon</a></li>
+ <li><a href="https://ko-fi.com/nea89">Ko-Fi</a></li>
+ </ul>
+</div>
<div id="warn" class="invisible">
Connection closed
</div>
<script>
+
+ function adinfo() {
+ admodal.classList.add('visible');
+ }
+
+ function adinfoClose() {
+ admodal.classList.remove('visible');
+ }
+
+
class Board {
constructor(elem) {
this.socket = new WebSocket(`${location.protocol.includes('s') ? 'wss' : 'ws'}://${window.location.host}/socket`)
@@ -342,4 +397,4 @@
</body>
-</html> \ No newline at end of file
+</html>