2023-12-06 18:12:31 +01:00
|
|
|
|
|
|
|
form{
|
2023-11-20 15:53:42 +01:00
|
|
|
height:100%;
|
2023-12-06 18:12:31 +01:00
|
|
|
width:100%;
|
2023-11-20 15:53:42 +01:00
|
|
|
display:flex;
|
2023-12-06 18:12:31 +01:00
|
|
|
flex-direction:row;
|
|
|
|
margin:auto;
|
2023-11-20 15:53:42 +01:00
|
|
|
}
|
|
|
|
|
2023-12-06 18:12:31 +01:00
|
|
|
|
2023-11-20 15:53:42 +01:00
|
|
|
.side_menu{
|
|
|
|
display: flex;
|
2023-12-06 18:12:31 +01:00
|
|
|
justify-content: center;
|
2023-11-20 15:53:42 +01:00
|
|
|
align-items:center;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 25%;
|
|
|
|
background-color: lightgray;
|
2023-12-06 18:12:31 +01:00
|
|
|
border: grey solid;
|
|
|
|
border-width: 2px;
|
2023-12-13 02:11:29 +01:00
|
|
|
margin-bottom: 59px;
|
2023-11-20 15:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#description{
|
|
|
|
font-size: 40px;
|
2023-12-06 18:12:31 +01:00
|
|
|
text-align: center;
|
2023-11-20 15:53:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#submit{
|
|
|
|
margin-bottom: 40px;
|
|
|
|
background-color: chartreuse;
|
|
|
|
margin-top: auto;
|
|
|
|
height: 50px;
|
|
|
|
width: 80%;
|
|
|
|
border-radius: 25px;
|
|
|
|
border: 2px white;
|
|
|
|
box-shadow: 0 0 0 4px white;
|
|
|
|
font-size: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload_field {
|
|
|
|
margin: auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: right;
|
|
|
|
flex-basis: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.upload_button{
|
|
|
|
display:flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload_field p{
|
|
|
|
display:none
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|