version 1.0.0 commit

This commit is contained in:
Soulful Sailer
2026-03-04 21:00:14 -06:00
parent 13061a389f
commit eb0916d90a
17 changed files with 1941 additions and 0 deletions

27
static/styles/event.css Normal file
View File

@@ -0,0 +1,27 @@
#body-container {
margin-top: 20px;
width: 350px;
}
#event-form {
display: flex;
flex-direction: column;
}
#event-form input, #delete-button {
margin-bottom: 10px;
padding: 5px;
border: none;
color: var(--main-color);
background-color: var(--background-accent);
}
#delete-button {
width: 100%;
}
#submit:active, #delete-button:active {
background-color: var(--main-color);
color: var(--background-color);
}