File size: 861 Bytes
83b4013 |
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 |
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1 {
font-weight: bold;
font-size: 4em;
margin-bottom: 30px;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
}
select,
input,
button {
padding: 10px;
font-size: 18px;
border-radius: 4px;
border: 1px solid #ccc;
appearance: none;
box-sizing: border-box;
margin-bottom: 10px;
}
select {
width: 100%;
}
button {
cursor: pointer;
background-color: #5da8de;
color: white;
padding: 10px 20px;
width: 100%;
border: none;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: background-color 0.2s ease-in;
}
button:hover {
background-color: #498ec3;
}
#generated-image {
height: 480px;
width: 850px;
margin: 0 auto;
object-fit: cover;
} |