213 lines
No EOL
3.9 KiB
CSS
213 lines
No EOL
3.9 KiB
CSS
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: IBM Plex Mono,monospace;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
color: #ccc;
|
|
}
|
|
body{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background: #1D1F21;
|
|
}
|
|
::selection{
|
|
color: #fff;
|
|
background: #43AFFC;
|
|
}
|
|
.wrapper{
|
|
width: 400px;
|
|
background: #1D1F21;
|
|
border: 1px solid transparent;
|
|
border-top-color: transparent;
|
|
border-right-color: transparent;
|
|
border-bottom-color: transparent;
|
|
border-left-color: transparent;
|
|
border-top-color: transparent;
|
|
border-right-color: transparent;
|
|
border-bottom-color: transparent;
|
|
border-left-color: transparent;
|
|
border-color: #ccc;
|
|
}
|
|
.wrapper header{
|
|
font-size: 21px;
|
|
font-weight: 500;
|
|
color: #ccc;
|
|
padding: 16px 15px;
|
|
align-items: center;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
header i{
|
|
font-size: 0em;
|
|
cursor: pointer;
|
|
margin-right: 8px;
|
|
}
|
|
.wrapper.active header i{
|
|
margin-left: 5px;
|
|
font-size: 30px;
|
|
vertical-align: middle;
|
|
}
|
|
.wrapper .input-part{
|
|
margin: 20px 25px 30px;
|
|
}
|
|
.wrapper.active .input-part{
|
|
display: none;
|
|
}
|
|
.input-part .info-txt{
|
|
display: none;
|
|
font-size: 17px;
|
|
text-align: center;
|
|
padding: 12px 10px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.input-part .info-txt.error{
|
|
color: #ccc;
|
|
display: block;
|
|
background: #721c24;
|
|
border: 1px solid #ccc;
|
|
}
|
|
.input-part .info-txt.pending{
|
|
color: #ccc;
|
|
display: block;
|
|
background: #0c5460;
|
|
border: 1px solid #ccc;
|
|
}
|
|
.input-part :where(input, button){
|
|
width: 100%;
|
|
height: 55px;
|
|
border: none;
|
|
outline: none;
|
|
font-size: 18px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
.input-part input{
|
|
text-align: center;
|
|
padding: 0 15px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
.input-part input:is(:focus, :valid){
|
|
border: 2px solid #000428;
|
|
}
|
|
.input-part input::placeholder{
|
|
color: #bfbfbf;
|
|
}
|
|
.input-part .separator{
|
|
height: 1px;
|
|
width: 100%;
|
|
margin: 25px 0;
|
|
background: #ccc;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.separator::before{
|
|
color: #b3b3b3;
|
|
font-size: 19px;
|
|
padding: 0 15px;
|
|
background: #fff;
|
|
}
|
|
.input-part button{
|
|
color: #fff;
|
|
cursor: pointer;
|
|
background: #1D1F21;
|
|
transition: 0.3s ease;
|
|
}
|
|
.input-part button:hover{
|
|
background: #1D1F21;
|
|
}
|
|
|
|
.wrapper .weather-part{
|
|
display: none;
|
|
margin: 30px 0 0;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
.wrapper.active .weather-part{
|
|
display: flex;
|
|
}
|
|
.weather-part img{
|
|
max-width: 125px;
|
|
}
|
|
.weather-part .temp{
|
|
display: flex;
|
|
font-weight: 500;
|
|
font-size: 72px;
|
|
}
|
|
.weather-part .temp .numb{
|
|
font-weight: 600;
|
|
}
|
|
.weather-part .temp .deg{
|
|
font-size: 40px;
|
|
display: block;
|
|
margin: 10px 5px 0 0;
|
|
}
|
|
.weather-part .weather{
|
|
font-size: 15px;
|
|
text-align: center;
|
|
margin: -5px 20px 15px;
|
|
}
|
|
.weather-part .location{
|
|
display: flex;
|
|
font-size: 19px;
|
|
padding: 0 20px;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
align-items: flex-start;
|
|
}
|
|
.location i{
|
|
font-size: 22px;
|
|
margin: 4px 5px 0 0;
|
|
}
|
|
.weather-part .bottom-details{
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
border-top: 1px solid #ccc;
|
|
}
|
|
.bottom-details .column{
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 15px 0;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.column i{
|
|
color: #ccc;
|
|
font-size: 40px;
|
|
}
|
|
.column.humidity{
|
|
border-left: 1px solid #ccc;
|
|
}
|
|
.column .details{
|
|
margin-left: 3px;
|
|
}
|
|
.details .temp, .humidity span{
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
margin-top: -3px;
|
|
}
|
|
.details .temp .deg{
|
|
margin: 0;
|
|
font-size: 17px;
|
|
padding: 0 2px 0 1px;
|
|
}
|
|
.column .details p{
|
|
font-size: 14px;
|
|
margin-top: -6px;
|
|
}
|
|
.humidity i{
|
|
font-size: 37px;
|
|
}
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 50px;
|
|
text-align: center;
|
|
color: #999;
|
|
} |