RandomCanvasDraw / style.css
eaglelandsonce's picture
Update style.css
6eb8475 verified
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;
}