Spaces:
Sleeping
Sleeping
File size: 506 Bytes
cf476f3 |
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 |
.container {
padding: 2rem;
font-size: 1.3rem;
max-width: 48rem;
margin: 0 auto;
}
.form {
display: flex;
margin-bottom: 2rem;
}
.form input {
width: 100%;
padding: 1rem;
border: 1px solid #000;
border-radius: 0.25rem;
font-size: 1.3rem;
margin-right: 1rem;
}
.form button {
padding: 1rem;
border: none;
border-radius: 0.25rem;
box-sizing: border-box;
cursor: pointer;
font-size: 1.3rem;
}
.imageWrapper {
width: 100%;
aspect-ratio: 1 / 1;
position: relative
} |