Roblox 2008-2011 theme

Makes ROBLOX.com look like it did in the golden years

< Spätná väzba na Roblox 2008-2011 theme

Hodnotenie: OK - skript funguje, ale má chyby

§
Pridaný: 14.12.2021

Do I have to use a specific browser? I'm on opera and it looks a little bit buggy.

§
Pridaný: 16.12.2021

no, but you need BTroblox for navigation to work

§
Pridaný: 18.12.2021

cool honestly! can you help me make a 2015 theme?

§
Pridaný: 19.12.2021

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;
}

§
Pridaný: 19.12.2021

oh thank you!

§
Pridaný: 19.07.2022

any progress?

§
Pridaný: 19.07.2022

i forgot to use it but now I did. is there any way I can use it to add CSS in violentmonkey?

§
Pridaný: 19.07.2022

actual progress: fixed some stuff and got old logos

§
Pridaný: 19.07.2022
Upravený: 19.07.2022
function addStyle(styleString) {
  const style = document.createElement('style');
  style.textContent = styleString;
  document.head.append(style);
}

addStyle(`
//INSERT CSS BELOW

`);

Pridať odpoveď

Aby ste mohli pridať odpoveď, prihláste sa.