Spaces:
Sleeping
Sleeping
File size: 858 Bytes
dfc2fe0 |
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 |
body {
font-family: Arial, sans-serif;
background: #0f172a;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: #020617;
padding: 30px;
border-radius: 12px;
width: 400px;
text-align: center;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
h1 {
margin-bottom: 10px;
}
input[type="file"] {
margin: 15px 0;
}
button {
background: #22c55e;
border: none;
padding: 10px 20px;
color: black;
font-weight: bold;
cursor: pointer;
border-radius: 6px;
}
button:hover {
background: #16a34a;
}
.preview img {
margin-top: 15px;
max-width: 100%;
border-radius: 6px;
background: white;
}
.result {
margin-top: 20px;
}
#resultText {
font-size: 28px;
font-weight: bold;
color: #38bdf8;
}
|