Update 2025-04-17_20:04:08

This commit is contained in:
root
2025-04-17 20:04:09 +02:00
commit 13920ef307
2228 changed files with 406873 additions and 0 deletions

68
static/style.css Normal file
View File

@ -0,0 +1,68 @@
/* /var/www/minitactix/static/style.css */
body {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #f9f9f9;
}
.container {
max-width: 960px;
width: 100%;
text-align: center;
}
h1 {
margin-bottom: 20px;
}
button {
padding: 10px 20px;
margin: 10px;
font-size: 18px;
cursor: pointer;
border: 1px solid #ccc;
background: white;
border-radius: 5px;
}
button:hover {
background: #eee;
}
.grid {
display: grid;
grid-template-columns: repeat(4, 80px);
grid-gap: 5px;
justify-content: center;
margin: 20px auto;
}
.tile {
width: 80px;
height: 80px;
font-size: 36px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid #888;
background: white;
cursor: pointer;
}
.tile:hover {
background: #f0f0f0;
}
.hidden {
display: none;
}
#status {
font-size: 20px;
margin-top: 10px;
}