CoolFace
Apppublic

perborgen/javascript-object-detector

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
style.css51 linesDownload Raw Back to root
1html, body {2    margin: 20px;3    font-family:Arial, Helvetica, sans-serif;4}5 6.container {7    margin: 0 auto;8    width: 400px;9    display: flex;10    flex-direction: column;11    align-items: center;12}13 14label {15    border: 2px solid black;16    padding: 8px 16px;17    cursor: pointer;18    border-radius: 6px;19    display: flex;20    align-items: center;21}22 23input[type="file"] {24    display: none;25}26 27.upload-icon {28    width: 30px;29    margin-right: 10px;30}31 32#image-container {33    margin-top: 20px;34    position: relative;35}36 37#image-container img {38    width: 400px;39}40  41.bounding-box {42    position: absolute;43    box-sizing: border-box;44}45  46.bounding-box-label {47    position: absolute;48    color: white;49    font-size: 12px;50}51