Skip to content

Instantly share code, notes, and snippets.

@oxguy3
Last active July 9, 2016 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oxguy3/37a99a05cbe2aed72bf664e7f6c5e95b to your computer and use it in GitHub Desktop.
Save oxguy3/37a99a05cbe2aed72bf664e7f6c5e95b to your computer and use it in GitHub Desktop.
CSS to make Prime Player's mini-player look nice for live-streaming. Use the "Normal" layout option with this
* {
font-family: "Segoe UI", sans-serif;
}
#player {
background-color: #0F0F0F !important;
height: 104px !important;
}
#top {
height: 80px !important;
}
#cover {
height: 96px !important;
width: 96px !important;
}
#song>a {
font-size: 13px !important;
margin-bottom: 8px !important;
}
#song>a#track {
font-size: 20px !important;
margin-bottom: 14px !important;
}
#time {
background-color: transparent !important;
}
#playControls, #rightbuttons, #lastfmInfo {
display: none;
}
document.getElementsByTagName("head")[0].innerHTML += "<style id='styleTweaks'></style>";
document.getElementById("styleTweaks").innerHTML = "* {font-family: \"Segoe UI\", sans-serif;} #player {background-color: #0F0F0F !important; height: 104px !important;} #top {height: 80px !important;} #cover {height: 96px !important; width: 96px !important;} #song>a {font-size: 16px !important; margin-bottom: 8px !important;} #song>a#track { font-size: 20px !important; margin-bottom: 14px !important;} #time { background-color: transparent !important;} #playControls, #rightbuttons, #lastfmInfo {display: none;}";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment