Spaces:
Runtime error
Runtime error
File size: 1,513 Bytes
b828b8f |
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
hr {
border: none;
border-top: none;
margin: 40px 0;
}
/* Set a futuristic background */
body {
background-color: #0f0f0f;
color: #ffffff;
font-family: Arial, sans-serif;
}
/* Style the header */
header {
text-align: center;
padding: 20px;
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
p {
font-size: 18px;
}
/* Style the upload section */
.upload-section {
text-align: center;
margin: 40px auto;
}
.upload-box {
background-color: #272727;
padding: 10px;
border-radius: 10px;
}
h2 {
font-size: 24px;
margin-bottom: 10px;
}
.upload-area {
border: 2px dashed #555555;
/* padding: 0; */
cursor: pointer;
}
.upload-label {
display: block;
text-align: center;
font-size: 16px;
color: #555555;
border: 2px dashed #555555;
/* padding: 0; */
cursor: pointer;
}
button {
background-color: #1e90ff;
color: #ffffff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0077b6;
}
/* Style the results section */
.results-section {
margin-top: 40px;
text-align: center;
}
#results-output {
font-size: 20px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 10px;
margin: 0 auto;
max-width: 600px;
}
|