Spaces:
Running
Running
File size: 1,169 Bytes
e7d343e 6eb8475 e7d343e dc36759 6eb8475 dc36759 e7d343e dc36759 e7d343e dc36759 e7d343e dc36759 e7d343e c0b04c3 e7d343e 6eb8475 10489f8 e7d343e 10489f8 c0b04c3 |
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 78 |
body {
font-family: Arial, sans-serif;
margin: 0;
overflow: hidden;
}
#threejs-container {
width: 100%;
height: 100vh;
position: absolute;
top: 0;
left: 0;
}
#drop-container {
display: flex;
justify-content: space-around;
margin: 20px auto;
width: 90%;
position: relative;
z-index: 1;
}
.drop-area {
border: 2px dashed #ccc;
border-radius: 20px;
width: 45%;
padding: 20px;
text-align: center;
cursor: pointer;
background-color: #f9f9f9;
}
.drop-area p {
margin: 0;
font-size: 16px;
color: #333;
}
input[type="file"] {
display: none;
}
.file-display-area {
margin-top: 20px;
border-top: 1px solid #ccc;
padding-top: 10px;
}
#fileList {
list-style: none;
margin-top: 20px;
padding-left: 0;
}
#fileList li {
margin: 5px 0;
font-size: 14px;
color: #333;
}
.audio-button {
display: block;
margin: 20px auto;
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
}
audio {
display: block;
margin: 20px auto;
}
|