Spaces:
Running
Running
File size: 766 Bytes
569f484 |
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 |
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: flex-start;
background-color: #f0f0f0;
padding: 20px;
}
form {
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
width: 100%;
max-width: 600px;
}
input[type="file"], input[type="number"], input[type="text"], select {
display: block;
margin-bottom: 10px;
width: 100%;
}
select {
height: 100px;
overflow-y: scroll;
}
.result {
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 600px;
}
.result img {
max-width: 100%;
height: auto;
}
|