You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
821 B
46 lines
821 B
2 years ago
|
body {
|
||
|
max-width: 50rem;
|
||
|
margin: auto;
|
||
|
font-family: sans-serif;
|
||
|
padding: .2rem;
|
||
|
}
|
||
|
body .search form * {
|
||
|
margin-right: 1rem;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
body .forecast {
|
||
|
border-spacing: 0;
|
||
|
width: 100%;
|
||
|
margin-bottom: 2rem;
|
||
|
}
|
||
|
body .forecast tbody::after {
|
||
|
display: block;
|
||
|
height: 2rem;
|
||
|
content: "";
|
||
|
}
|
||
|
body .forecast img {
|
||
|
height: 2rem;
|
||
|
}
|
||
|
body .forecast th {
|
||
|
border-bottom: .2rem solid #ccc;
|
||
|
background-color: #aaa;
|
||
|
padding: .8rem 0rem;
|
||
|
}
|
||
|
body .forecast td {
|
||
|
padding: .5rem 0rem;
|
||
|
border-bottom: 1px solid #ddd;
|
||
|
}
|
||
|
body .forecast td:not(:first-child) {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
body .forecast .pictogram {
|
||
|
width: 0;
|
||
|
padding: .5rem .5rem;
|
||
|
}
|
||
|
body .forecast .flying-weather {
|
||
|
border-bottom: 3px solid green;
|
||
|
}
|
||
|
body .forecast .maybe-flying-weather {
|
||
|
border-bottom: 3px solid darkorange;
|
||
|
}
|