22 lines
338 B
CSS
22 lines
338 B
CSS
|
body {
|
||
|
background-color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
background-color: #f8bf3c;
|
||
|
margin: 50px auto;
|
||
|
width: auto;
|
||
|
padding: 20px;
|
||
|
border-radius: 10px;
|
||
|
max-width: 20%;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
border-radius: 20px;
|
||
|
text-align: center;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
.button {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|