-
Notifications
You must be signed in to change notification settings - Fork 7
I apologize if this is a little dumb #488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
There are no stupid questions. You'd change the The full CSS: /* theme.css */
:root {
/* Configuration for the text shadow */
--text-shadow-color: #0007;
/*
See https://currentsong.nerixyz.de/Customization/Theming/#default-variables
for more variables like --text-color that can be set here.
*/
}
#song-container {
/* Remove the background */
background: transparent;
/* Disable animations */
transition: none;
overflow: visible;
box-shadow: none;
}
/* Prevent the overlay from disappearing */
#song-container.vanish {
transform: none;
opacity: 100%;
}
/* Add some shadow for readability */
#song-info :is(h1, h2) {
text-shadow: 1px 4px 15px var(--text-shadow-color, #0007);
} Note that disabling |
Thank you. |
Is it possible to get the marquee to loop and go in one direction? |
That's not possible yet, there would need to be two elements for the text. |
Hm.. There a way to disable the movement entirely of the marquee so the text just sits still for the time being? |
You can use :root {
--use-marquee: false;
--max-width: unset;
} |
How do I get rid of the little text pop in animation for the song title and such whenever it first appears or changes to another song.
Also how would I stop it from disappearing on pause
The text was updated successfully, but these errors were encountered: