23 lines
338 B
CSS
23 lines
338 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
input {
|
|
padding: 10px;
|
|
width: 200px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 15px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#resultContainer {
|
|
margin-top: 20px;
|
|
}
|