Last active
July 9, 2016 21:13
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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