Skip to content

Instantly share code, notes, and snippets.

View TheDutchCoder's full-sized avatar
👋
Say hi!

Reinier Kaper TheDutchCoder

👋
Say hi!
View GitHub Profile
### Begin System Info ###
## Please include this information when posting support requests ##
Multisite: No
SITE_URL: http://dev.opd.ca
HOME_URL: http://dev.opd.ca
// Very basic media query mixin with the option to disable the entire
// media query, which will result in compounded styles for IE8.
//
// The cascade will let you end up with the "biggest" styles. This is
// far from perfect (e.g. if you have queries for much larger/wider
// media, IE8 will end up using that).
@mixin mq($media) {
@if $no-mq == true { @content; }
@else {
@TheDutchCoder
TheDutchCoder / gist:dffc7a4e79c63bf3cfed
Last active August 29, 2015 14:08
Normalizing 'click'-like events
/**
* Normalize 'click'-like events on different media.
*
* We keep track of a touch events, which start out as 'clicks',
* but will be cancelled on (e.g.) moves.
*/
var _click,
_clickEvent;
@TheDutchCoder
TheDutchCoder / Center YouTube
Created December 7, 2012 22:04
Google decided to left align YouTube, which is terrible. Fix it by dragging this script to you bookmarks and click it while you're on YouTube to center the page again.
javascript:(function(){var a=document.getElementsByTagName("body");a[0].className=a[0].className.replace("site-left-aligned","")})();