2024-03-06 17:32:10 +01:00
|
|
|
#lyrics {
|
|
|
|
color: #171717;
|
|
|
|
line-height: 2.5rem;
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lyrics a {
|
|
|
|
color: inherit;
|
|
|
|
background-color: #ddd;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lyrics a:hover {
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 2rem;
|
|
|
|
flex-basis: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata h1 {
|
|
|
|
font-size: 2rem;
|
|
|
|
color: #171717;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata h2 {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
color: #1e1e1e;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
#metadata-info {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#info {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 2rem;
|
|
|
|
flex-basis: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about p {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
color: #171717;
|
|
|
|
line-height: 1.8rem;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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: #1e1e1e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#credits p {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
color: #171717;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-03-09 21:40:20 +01:00
|
|
|
.dark #lyrics {
|
|
|
|
color: #ccc;
|
2024-03-06 17:32:10 +01:00
|
|
|
}
|
|
|
|
|
2024-03-09 21:40:20 +01:00
|
|
|
.dark #lyrics a {
|
|
|
|
background-color: #272d44;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2024-03-06 17:32:10 +01:00
|
|
|
|
2024-03-09 21:40:20 +01:00
|
|
|
.dark #lyrics a:hover {
|
|
|
|
background-color: #32384f;
|
|
|
|
}
|
2024-03-06 17:32:10 +01:00
|
|
|
|
2024-03-09 21:40:20 +01:00
|
|
|
.dark #metadata h1 {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
2024-03-06 17:32:10 +01:00
|
|
|
|
2024-03-09 21:40:20 +01:00
|
|
|
.dark #metadata h2,
|
|
|
|
.dark #credits p {
|
|
|
|
color: #eee;
|
|
|
|
}
|
2024-03-06 17:32:10 +01:00
|
|
|
|
2024-03-09 21:40:20 +01:00
|
|
|
.dark #title {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
2024-03-06 17:32:10 +01:00
|
|
|
|
2024-03-09 21:40:20 +01:00
|
|
|
.dark #about p,
|
|
|
|
.dark #credits summary {
|
|
|
|
color: #ccc;
|
|
|
|
}
|
2024-03-06 17:32:10 +01:00
|
|
|
|
2024-03-09 21:40:20 +01:00
|
|
|
@media screen and (max-width: 1080px) {
|
|
|
|
#metadata {
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
2024-03-06 17:32:10 +01:00
|
|
|
}
|
|
|
|
}
|
2024-03-09 21:40:20 +01:00
|
|
|
|