initial commit

This commit is contained in:
2023-06-30 11:23:12 +02:00
parent 830872bdad
commit 6a67dc40bf
16 changed files with 360 additions and 0 deletions

42
static/style.css Executable file
View File

@@ -0,0 +1,42 @@
*{
font-family: sans-serif;
}
main{
display: flex;
width: 90vw;
height: 50vh;
margin: 0 5vw;
gap: 2rem;
}
main div{
width: 50%;
}
textarea{
width: 90%;
height: 20vh;
margin: 20px 0;
min-height: fit-content;
}
/* button{
border: 1px solid black;
padding: 5px;
border-radius: 2.5px;
} */
input[type="file"] {
display: none;
}
.custom-file-upload, button {
border: 1px solid #313131;
background-color: lightgray;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
font-size: 1rem;
border-radius: .2rem;
}