Update 2025-04-13_16:26:56

This commit is contained in:
root
2025-04-13 16:26:57 +02:00
commit e1f088f10f
2311 changed files with 422629 additions and 0 deletions

41
static/style.css Normal file
View File

@ -0,0 +1,41 @@
body {
background-color: #282C34;
color: #61DAFB;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
padding-top: 40px;
}
.container {
margin: auto;
max-width: 400px;
}
#grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-top: 20px;
}
button {
font-size: 2em;
padding: 20px;
cursor: pointer;
background: #20232A;
border: 2px solid #61DAFB;
color: #61DAFB;
border-radius: 8px;
transition: background 0.2s, color 0.2s;
}
button:hover {
background: #61DAFB;
color: #20232A;
}
#feedback {
font-size: 1.5em;
margin-top: 15px;
}