File size: 1,162 Bytes
d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
html,
body {
font-family: Arial, Helvetica, sans-serif;
}
.container {
margin: 40px auto;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.wrap {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.left-column,
.right-column {
flex: 1;
padding: 10px;
box-sizing: border-box;
max-height: 500px;
}
@media (max-width: 508px) {
.left-column,
.right-column {
flex: 100%;
}
}
.custom-file-select {
display: flex;
align-items: center;
cursor: pointer;
gap: 10px;
border: 2px solid black;
padding: 8px 16px;
cursor: pointer;
border-radius: 6px;
}
#file-select {
display: none;
}
#out-container {
width: 400px;
height: 500px;
}
img {
width: 100%;
height: 100%;
object-fit: contain;
border: 1px dashed rgba(128, 128, 128, 0.5);
}
.bounding-box {
position: absolute;
box-sizing: border-box;
border-width: 2px;
border-style: solid;
}
.bounding-box-label {
color: white;
position: absolute;
font-size: 12px;
margin-top: -16px;
margin-left: -2px;
padding: 1px;
} |