Created
March 5, 2017 00:50
-
-
Save stowball/440ed3a0c2528e22bee1b5154a00fa86 to your computer and use it in GitHub Desktop.
A Greasemonkey script for better slides.com styles
This file contains 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
// ==UserScript== | |
// @name Better slides.com styles | |
// @namespace http://mattstow.com | |
// @version 0.1 | |
// @description Better slides.com styles that should be the default | |
// @author Matt Stow | |
// @match https://slides.com/stowball/* | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ | |
'use strict'; | |
var css = '<style>z {} .reveal li { margin-bottom: 10px; } .reveal .slides section .fragment.visible { opacity: 0.7; } .reveal .slides section .fragment.visible.current-fragment { opacity: 1; }'; | |
var style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.appendChild(document.createTextNode(css)); | |
document.getElementsByTagName('head')[0].appendChild(style); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment