websieve/styles.css

33 lines
510 B
CSS
Raw Normal View History

2024-10-21 17:13:27 -05:00
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
input {
padding: 10px;
width: 200px;
margin-bottom: 10px;
}
button {
padding: 10px 15px;
cursor: pointer;
}
#resultContainer {
margin-top: 20px;
}