mirror of
https://codeberg.org/vlw/still-alive.git
synced 2025-09-14 00:13:41 +02:00
Everything is cued up and good to go. Now comes the fun part of syncing the lyrics with the song
33 lines
No EOL
439 B
CSS
33 lines
No EOL
439 B
CSS
html,
|
|
body {
|
|
--padding: 40px;
|
|
display: initial;
|
|
overflow: hidden;
|
|
padding: var(--padding);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#player {
|
|
position: absolute;
|
|
bottom: var(--padding);
|
|
}
|
|
|
|
#player pre,
|
|
#player p {
|
|
font-size: 16px;
|
|
color: rgb(var(--color-accent));
|
|
}
|
|
|
|
#player p {
|
|
margin: 0;
|
|
height: 23px;
|
|
}
|
|
|
|
#player p:last-child::after {
|
|
content: "_";
|
|
animation: blink 500ms alternate infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to { opacity: 0; }
|
|
} |