28 lines
391 B
CSS
28 lines
391 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #f0f8ff;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.location-input {
|
|
margin: 20px;
|
|
}
|
|
|
|
.weather-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.weather-day {
|
|
border: 1px solid #ccc;
|
|
background-color: #fff;
|
|
margin: 10px;
|
|
padding: 15px;
|
|
width: 200px;
|
|
}
|