Skip to content

Instantly share code, notes, and snippets.

@mikemaccana
Created April 25, 2019 10:12
Show Gist options
  • Select an option

  • Save mikemaccana/243e54fda04363cc72b0809b7be2f540 to your computer and use it in GitHub Desktop.

Select an option

Save mikemaccana/243e54fda04363cc72b0809b7be2f540 to your computer and use it in GitHub Desktop.
Unfuck webchat.freenode.net
var styles = `
.qwebirc-qui .ircwindow div {
font-family: medium-content-serif-font,Georgia,Cambria,"Times New Roman",Times,serif;
margin: 26px auto 0 auto;
max-width: 650px;
}
.qwebirc-qui .lines {
font-size: 18px;
line-height: 1.58;
letter-spacing: -.004em;
}
.qwebirc-qui .nicklist a {
margin: 6px;
}
`
var styleSheet = document.createElement("style")
styleSheet.type = "text/css"
styleSheet.innerText = styles
document.body.appendChild(styleSheet)
@mikemaccana
Copy link
Copy Markdown
Author

Paste in your console to make webchat.freenode.net readable.

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