Files
week2-day2/style.css
2026-04-07 17:18:01 +00:00

35 lines
578 B
CSS

body {
font-family: Arial, sans-serif;
background-color: #eef2f7;
text-align: center;
margin-top: 100px;
}
.container {
background-color: white;
padding: 30px;
width: 320px;
margin: auto;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}
input {
padding: 10px;
width: 80%;
font-size: 16px;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #1e7e34;
}