update under construction panel

This commit is contained in:
Jakob Ketterl 2024-02-05 00:31:08 +01:00
parent 6d10a433db
commit 27b4ec5871
2 changed files with 35 additions and 4 deletions

View file

@ -1411,4 +1411,32 @@ img.openwebrx-mirror-img
.dab-container .dab-ensemble-label:not(:empty):before {
content: "Ensemble: ";
}
}
.under-construction {
background-color: #ffd914;
color: #111111;
text-align: center;
}
.under-construction h4 {
font-size: 15pt;
}
.under-construction h4 {
margin: 0
}
.under-construction p {
margin: 5px 0;
}
.under-construction-description {
max-height: 0;
overflow: hidden;
transition: max-height .2s ease-in-out;
}
.under-construction:hover .under-construction-description {
max-height: 500px;
}