Skip to content

Instantly share code, notes, and snippets.

@mattparmett
Created January 1, 2018 23:38
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 mattparmett/f13dc596febf79b463831647c9e0f221 to your computer and use it in GitHub Desktop.
Save mattparmett/f13dc596febf79b463831647c9e0f221 to your computer and use it in GitHub Desktop.
Ultimate-Guitar Lite Userstyle
/* Hide all elements of the page, and set bg to white */
body {
visibility: hidden;
background-image: none;
background-color: white;
}
/* Unhide search bar, song title, tab, comments */
div#search_bar_simple, h1, pre.js-tab-content, div.cm_cnt {
visibility: visible!important;
}
/* Set tab background to white */
pre.js-tab-content, div.cm_cnt, h1 {
background-color: white;
}
/* Recolor search bar */
b.f-right, div.selcurr, div.searchinp, input#search_input, div.searchbut, input[type="submit"] {
color: black;
background-color: white;
}
/* Reposition elements on page */
div#search_bar_simple {
position: relative;
top: -250px;
}
h1 {
position: relative;
top: -250px;
}
pre.js-tab-content {
position: relative;
top: -400px;
}
div.cm_cnt {
position: relative;
top: -700px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment