Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(2 edits)

Incredible! Thanks so much!

I don't think there's anything else that can't be adjusted simply with the custom CSS entry for people that would want to do those things. My concern would be that adding every single option I would want personally would make the UI too big/unwieldy, if that makes sense. I think the best features of the scritch editor currently are that despite being simple to use for people who aren't necessarily comfortable with markup/CSS editing, you still have the custom CSS field for people that are.  I'd prefer if the scritch editor kept most of that simplicity at its core so that hopefully more musicians will be open to trying to use it without being overwhelmed with customization options.  But perhaps that's just my own conceit.

Thanks again for creating this cool application!

And for anyone else who ends up reading this, here are some more useful custom CSS options:

/* color of player icons */ 
#controls #nextTrack, #controls #prevTrack, #controls #loopSwitch, #controls #volumeContainer #volumeIcon {
    color: var(--primaryAltColor);
}  
/* color of highlighted info icon on current track */ 
.track.active .toggleInfo { 
    color: var(--primaryAltColor);
}  
/* justify-right song durations */ 
.track .spacer {     
    order: 3; } 
.track .duration {
    order: 4; } 
.track .toggleInfo {
    order: 5;
}