Greasy Fork is available in English.
Makes ROBLOX.com look like it did in the golden years
< Opiniones de Roblox 2008-2011 theme
no, but you need BTroblox for navigation to work
cool honestly! can you help me make a 2015 theme?
roblox actually has 2016ish design still on the site
if you paste this into console {ctrl+shift+j) (or put in a userscript) it will put the site back into a partially broken 2015 theme with all the old icons on the sidebar
document.getElementById("rbx-body").classList.remove("light-theme");
document.getElementById("navigation-container").classList.remove("light-theme");
document.getElementById("rbx-body").classList.remove("dark-theme");
document.getElementById("navigation-container").classList.remove("dark-theme");
now to fix the broken stuff: add these to stylus/stylish
.rbx-header {background:#0074bd}
.game-card-info {position:relative}
now for buttons you can just add
.rbx-btn-secondary-xs {
background-color: #00a2ff;
border-color: #00a2ff;
color: white;
height: auto;
transition: all,0.2s,ease-in-out;
padding: 7px 16px;
font-size: 1em;
line-height: 100%;
border-radius: 3px;
}
and for game cards
.game-card-container {
position: relative;
text-align: left;
float: left;
background-color: white;
box-shadow: 0 1px 3px rgb(150 150 150 / 74%);
border-radius: 3px;
width: 100%;
height: auto;
padding: 9px 6px 6px 6px;
margin: 0 auto;
}
oh thank you!
any progress?
i forgot to use it but now I did. is there any way I can use it to add CSS in violentmonkey?
actual progress: fixed some stuff and got old logos
function addStyle(styleString) {
const style = document.createElement('style');
style.textContent = styleString;
document.head.append(style);
}
addStyle(`
//INSERT CSS BELOW
`);
Do I have to use a specific browser? I'm on opera and it looks a little bit buggy.