Spaces:
Sleeping
Sleeping
File size: 971 Bytes
0b19bef | 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 | /* styles.css */
/* Apply styles to the body element */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Center the main content */
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
/* Style the image upload form */
.form {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
.form input[type="file"] {
margin-bottom: 10px;
}
.form button {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
/* Style the result display */
.result {
text-align: center;
margin-top: 20px;
}
.result h2 {
font-size: 24px;
margin-bottom: 10px;
}
.result img {
width: 200px;
height: auto;
margin-bottom: 10px;
}
.result p {
font-size: 18px;
margin-bottom: 10px;
}
|