Skip to content

Instantly share code, notes, and snippets.

View UltraSimplified's full-sized avatar

Robin Layfield UltraSimplified

View GitHub Profile
@UltraSimplified
UltraSimplified / Function-block.php
Created November 15, 2012 15:01
Function block
function new_function( var1 = "", var2 = null ){
// do something
}
new_function( "a", "b" );
@UltraSimplified
UltraSimplified / dabblet.css
Created March 7, 2012 19:22 — forked from anonymous/dabblet.css
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
font-family: copperplate;
background-color: #D6AA39}
h1 {color: #8C6D8D}
@UltraSimplified
UltraSimplified / dabblet.css
Created January 18, 2012 14:31
CSS-Tricks Example
/*
CSS-Tricks Example
by Chris Coyier
http://css-tricks.com
*/
* { margin: 0; padding: 0; }
body { font: 14px Georgia, serif; }
h1 { width: 660px; margin: 0 auto; padding: 20px 0; color: #222; }
@UltraSimplified
UltraSimplified / dabblet.css
Created December 16, 2011 00:08
Kvick and Dirty
/**
* Kvick and Dirty
*/
background: #020;
background: linear-gradient(12deg, #020, green);
min-height:100%;