first commit

This commit is contained in:
ilgazca
2025-07-28 14:57:53 +03:00
commit ef6114eff9
13 changed files with 196 additions and 0 deletions

19
static/css/main.css Normal file
View File

@ -0,0 +1,19 @@
body {
margin: 0;
font-family: sans-serif;
}
table {
border-collapse: collapse; /* optional: merges borders between cells */
margin: 0 auto;
}
form {
margin: 0 auto;
width: max-content; /* ensures the form's width is not 100% */
}
th, td {
border: 1px solid black; /* adds border around each cell */
padding: 8px; /* optional: adds space inside cells */
text-align: left; /* optional: aligns text to the left */
}