Skip to content

Instantly share code, notes, and snippets.

@stowball
Created March 5, 2017 00:50
Show Gist options
  • Save stowball/440ed3a0c2528e22bee1b5154a00fa86 to your computer and use it in GitHub Desktop.
Save stowball/440ed3a0c2528e22bee1b5154a00fa86 to your computer and use it in GitHub Desktop.
A Greasemonkey script for better slides.com styles
// ==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