Files
2024-09-27 02:06:13 +08:00

51 lines
862 B
CSS
Executable File

@charset "UTF-8";
.weather_top {
height: 12rem;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 21px;
}
.weather_top .top_number {
font-size: 4.5rem;
color: #fff;
}
.top_bottom {
font-size: .7rem;
color: #dcd8d8;
}
.weather_info {
width: 100%;
height: 5rem;
padding: 13px 10px;
border-top: 1px solid #9e9c9c;
border-bottom: 1px solid #9e9c9c;
}
.weather_info ul {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.weather_info ul li .icon {
width: 1.7em;
height: 1.7em;
}
.weather_info ul li{
text-align: center;
}
.weather_info ul li p {
font-size: 13px;
}
.weather_list {
margin-top: 20px;
margin-bottom: 20px;
}
.weather_list ul li{
display: flex;
justify-content: space-between;
padding: 0 25px;
align-items: center;
}