Created
February 13, 2018 05:12
-
-
Save colus001/ab7159765b5bda2a21e8892f36172cfe to your computer and use it in GitHub Desktop.
anti-cancer for ugly css site
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍