Skip to content

Instantly share code, notes, and snippets.

View scott23's full-sized avatar

Scott Stiffler scott23

View GitHub Profile
$context['comment_arg'] = array('label_submit' => 'Send', 'title_reply' => 'Leave a Comment');
{{ function('comment_form', comment_arg, post.ID) }}
@scott23
scott23 / dabblet.css
Created November 15, 2012 17:15
Untitled
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
padding: 30px;
@scott23
scott23 / dabblet.css
Created November 15, 2012 17:10
CSS Swinging Panel Menu
/**
* CSS Swinging Panel Menu
*/
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
@scott23
scott23 / dabblet.css
Created April 18, 2012 19:11
CSS3 Checkbox Styles
/**
* CSS3 Checkbox Styles
*/
body {
background: #555;
}
h1 {
@scott23
scott23 / dabblet.css
Created February 24, 2012 21:51
CSS3 Slideout Arrow
/**
* CSS3 Slideout Arrow
*/
.userContent {
padding: 0 5px;
width: 230px;
animation: myfirst 1s;
background: limegreen;
height: 40px;
line-height:40px;
@scott23
scott23 / dabblet.css
Created February 20, 2012 16:57
Vertical Nav Menu
/**
* Vertical Nav Menu
*/
body {
font-size: 100%;
background:#32373d;
}
a {
@scott23
scott23 / dabblet.css
Created February 10, 2012 19:18
Testing perspective transform
/**
* Testing perspective transform
* Hover to see change
* Credit to Marco Kuiper
*/
/* BASIC RESET */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input{margin:0; padding:0;}