Skip to content

Instantly share code, notes, and snippets.

@kubarium
Last active April 3, 2019 15:48
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 kubarium/08ef4a0a3ccb8ee917a67d4c11c438ba to your computer and use it in GitHub Desktop.
Save kubarium/08ef4a0a3ccb8ee917a67d4c11c438ba to your computer and use it in GitHub Desktop.
document.body.style.backgroundColor="#333333";
container = document.querySelector(".container_left_column .container-item")
container.style.backgroundColor="#333333";
[...container.querySelectorAll("h3")].forEach(h3=>h3.style.color="#bbb")
grid = document.querySelector(".container_for_grid");
grid.style.display="flex";
grid.style.justifyContent="center";
[...grid.children].filter(child=>!child.classList.contains("block_for_inn_content")).forEach(child=>child.style.display="none")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment