File size: 736 Bytes
0bb7128 0ffabaf 0bb7128 0ffabaf 0bb7128 2df52b4 0bb7128 0ffabaf 0bb7128 0ffabaf 0bb7128 0ffabaf 0bb7128 |
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 |
html, body {
margin: 20px;
font-family:Arial, Helvetica, sans-serif;
}
.container {
margin: 0 auto;
width: 400px;
display: flex;
flex-direction: column;
align-items: center;
}
label {
border: 2px solid black;
padding: 8px 16px;
cursor: pointer;
border-radius: 6px;
display: flex;
align-items: center;
}
input[type="file"] {
display: none;
}
.upload-icon {
width: 30px;
margin-right: 10px;
}
#image-container {
margin-top: 20px;
position: relative;
}
#image-container img {
width: 400px;
}
.bounding-box {
position: absolute;
box-sizing: border-box;
}
.bounding-box-label {
position: absolute;
color: white;
font-size: 12px;
}
|