Skip to content

Instantly share code, notes, and snippets.

@colus001
Created February 13, 2018 05:12
Show Gist options
  • Save colus001/ab7159765b5bda2a21e8892f36172cfe to your computer and use it in GitHub Desktop.
Save colus001/ab7159765b5bda2a21e8892f36172cfe to your computer and use it in GitHub Desktop.
anti-cancer for ugly css site
const link = document.createElement('link')
link.rel = 'stylesheet'
link.href = 'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css'
link.crossorigin = 'anonymous'
const head = document.getElementsByTagName('head')[0]
head.prepend(link)
const body = document.getElementsByTagName('body')[0]
body.className = 'container'
body.style.padding = '2rem'
@rotoshine
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment