35 lines
506 B
CSS
35 lines
506 B
CSS
|
.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
|
||
|
}
|