2023-12-19 17:33:46 +01:00
|
|
|
|
|
|
|
form{
|
|
|
|
height:100%;
|
|
|
|
width:100%;
|
|
|
|
display:flex;
|
|
|
|
flex-direction:row;
|
|
|
|
margin:auto;
|
2023-12-23 17:01:39 +01:00
|
|
|
overflow:hidden;
|
2023-12-19 17:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.side_menu{
|
|
|
|
display: flex;
|
2023-12-23 17:01:39 +01:00
|
|
|
justify-content: space-between;
|
2023-12-19 17:33:46 +01:00
|
|
|
align-items:center;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 25%;
|
|
|
|
background-color: lightgray;
|
2023-12-23 17:01:39 +01:00
|
|
|
border: 2px grey solid;
|
|
|
|
padding: 0px 0px 40px 0px;
|
|
|
|
margin-bottom: 5px;
|
2024-01-04 21:33:13 +01:00
|
|
|
overflow-y: auto;
|
2023-12-19 17:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#description{
|
|
|
|
font-size: 40px;
|
|
|
|
text-align: center;
|
2023-12-23 17:01:39 +01:00
|
|
|
margin: 10px 0px 15px 0px;
|
2023-12-19 17:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#submit{
|
|
|
|
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;
|
2024-01-04 21:33:13 +01:00
|
|
|
flex-direction: column;
|
2023-12-19 17:33:46 +01:00
|
|
|
justify-content: right;
|
|
|
|
width:645px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.upload_field label{
|
|
|
|
display:flex;
|
|
|
|
flex-direction: row;
|
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.upload_field label img{
|
|
|
|
margin-right:5px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-23 17:01:39 +01:00
|
|
|
.image_number {
|
|
|
|
font-size: medium;
|
|
|
|
margin: 0 0 5px 0 ;
|
|
|
|
}
|
|
|
|
|
|
|
|
.results{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: white;
|
|
|
|
width: 70%;
|
|
|
|
align-items: center;
|
|
|
|
border: 2px black solid;
|
|
|
|
border-radius: 5%;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detection_info{
|
|
|
|
font-size: large;
|
|
|
|
text-decoration:solid;
|
|
|
|
color: black;
|
2024-01-04 21:33:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#download_json{
|
|
|
|
background-color: chartreuse;
|
|
|
|
margin: 30px auto auto auto;
|
|
|
|
height: 50px;
|
|
|
|
width: 60%;
|
|
|
|
border-radius: 25px;
|
|
|
|
border: 2px white;
|
|
|
|
box-shadow: 0 0 0 4px white;
|
|
|
|
font-size: 25px;
|
2023-12-23 17:01:39 +01:00
|
|
|
}
|