22 lines
352 B
CSS
Executable File
22 lines
352 B
CSS
Executable File
.weather-location input {
|
|
background-color: rgba(0, 0, 0, .5);
|
|
border: 1px solid rgba(255, 255, 255, .5);
|
|
}
|
|
|
|
.weather-location input:focus {
|
|
border: 1px solid rgba(255, 255, 255, .7);
|
|
}
|
|
|
|
.weather-day {
|
|
height: 150px;
|
|
border-left: 1px solid rgba(0, 0, 0, .05);
|
|
}
|
|
|
|
.weather-day.is-today {
|
|
border-left: none;
|
|
}
|
|
|
|
.card-footer {
|
|
padding: 0;
|
|
}
|