52 lines
802 B
CSS
52 lines
802 B
CSS
.root {
|
|
min-height: 100vh;
|
|
background: #0a0a0a;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 40px 20px;
|
|
gap: 24px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 32px;
|
|
color: #d946ef;
|
|
margin: 0;
|
|
text-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
|
|
}
|
|
|
|
.fileLabel {
|
|
display: inline-block;
|
|
padding: 14px 32px;
|
|
border: 2px dashed rgba(217, 70, 239, 0.5);
|
|
border-radius: 8px;
|
|
background: rgba(217, 70, 239, 0.1);
|
|
color: #fff;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
transition: background 0.15s, border-color 0.15s;
|
|
}
|
|
|
|
.fileLabel:hover {
|
|
background: rgba(217, 70, 239, 0.2);
|
|
border-color: #d946ef;
|
|
}
|
|
|
|
.fileLabelText {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.fileInput {
|
|
display: none;
|
|
}
|
|
|
|
.error {
|
|
color: #ef4444;
|
|
font-size: 14px;
|
|
margin: 0;
|
|
}
|
|
|
|
.playerWrap {
|
|
margin-top: 8px;
|
|
}
|