Skip to content

Instantly share code, notes, and snippets.

View lukeparkinson's full-sized avatar

Luke Parkinson lukeparkinson

View GitHub Profile
@lukeparkinson
lukeparkinson / mixins.scss
Created April 8, 2016 18:49 — forked from AlexPashley/mixins.scss
SASS: Mixins for CSS
/* MIXINs */
@mixin transition( $val : ease 0.5s ) {
-webkit-transition: $val;
-moz-transition:$val;
-o-transition:$val;
-ms-transition:$val;
transition:$val;
}
@mixin text-shadow( $top: 3px, $left: 3px, $blur: 3px , $colour: #333 ) {
@lukeparkinson
lukeparkinson / wp-query-ref.php
Created February 15, 2016 11:15 — forked from luetkemj/wp-query-ref.php
WP: Query $args
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php
*/
$args = array(