dumb/style/lyrics.css
ngn 7cea387f02
Some checks failed
Build and publish the docker image / build (push) Failing after 1m8s
general cleanup
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-19 12:29:05 +03:00

107 lines
1.2 KiB
CSS

#lyrics {
line-height: 2.5rem;
flex-basis: 0;
flex-shrink: 0;
flex-grow: 1;
color: #ccc;
}
#lyrics a {
color: inherit;
background-color: #272d44;
color: inherit;
}
#lyrics a:hover {
background-color: #32384f;
}
#metadata {
display: flex;
flex-direction: column;
gap: 2rem;
flex-basis: 0;
}
#metadata h1 {
font-size: 2rem;
color: #ddd;
}
#metadata h2 {
font-size: 1.4rem;
font-weight: 500;
color: #eee;
}
#metadata-info {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
#info {
display: flex;
flex-direction: column;
gap: 2rem;
flex-basis: 0;
}
#description {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
#description p {
font-size: 1.4rem;
line-height: 1.8rem;
cursor: pointer;
color: #ccc;
}
#title {
font-size: 2rem;
color: #1b1a17;
}
#lyrics-album-container {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
#credits {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
#credits summary {
font-size: 1.4rem;
cursor: pointer;
color: #ccc;
}
#credits p {
font-size: 1.3rem;
padding: 0.5rem;
color: #171717;
}
.hidden {
display: none;
}
#title {
color: #ddd;
}
@media screen and (max-width: 1080px) {
#metadata {
align-items: center;
text-align: center;
}
}