Skip to content

Instantly share code, notes, and snippets.

View vbuaraujo's full-sized avatar

Vítor De Araújo vbuaraujo

View GitHub Profile
@vbuaraujo
vbuaraujo / white-on-black.css
Created September 11, 2015 16:17
User style for fixed font, white text and black background.
@-moz-document url-prefix(http://), url-prefix(https://),
url-prefix(about:sessionrestore), url-prefix(about:newtab) {
* {
color: white !important;
background: black !important;
font-family: Fixed, monospace !important;
}
body {
font-size: 18px !important;
@-moz-document url-prefix(http://), url-prefix(https://) {
* {
color: white !important;
background: black !important;
font-family: Fixed !important;
}
body {
font-size: 18px !important;
}
@vbuaraujo
vbuaraujo / unfix-all-the-toolbars.user.js
Last active September 27, 2024 11:26
GreaseMonkey script to remove "position: fixed" from webpages
// ==UserScript==
// @name unfix-all-the-toolbars
// @description Removes "position: fixed" style from elements, unfixing "toolbars" and the such.
// @namespace http://inf.ufrgs.br/~vbuaraujo/
// @include *
// @version 1
// @grant none
// ==/UserScript==
// ==UserScript==
// @name unfix-all-the-toolbars
// @namespace http://inf.ufrgs.br/~vbuaraujo/
// @include *
// @version 1
// @grant none
// ==/UserScript==
// Based on https://stackoverflow.com/questions/13696100/greasemonkey-script-to-make-fixed-positioned-elements-static