Skip to content

Instantly share code, notes, and snippets.

@badlydrawnrob
badlydrawnrob / variables.less
Last active December 12, 2015 01:08
Less: simple variables
//
//
// Simple variables
// ====================================================================
// Base
// --------------------------------------------------------------------
@font-size-base: 13px;
@badlydrawnrob
badlydrawnrob / index.html
Created February 3, 2013 19:33
HTML: Basic template
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
@badlydrawnrob
badlydrawnrob / type.less
Created February 3, 2013 20:46
Less: Basic type setup
//
//
// Typography
// ====================================================================
body,
input,
textarea,
option,
select {
@badlydrawnrob
badlydrawnrob / style.less
Created February 6, 2013 01:14
Less: Basic style @imports
//
//
// Aspasia search form
// ====================================================================
// Base files, variables & vendor
// --------------------------------------------------------------------
@import "normalize.less";
@import "mixins.less";
@badlydrawnrob
badlydrawnrob / scaffolding.less
Created February 6, 2013 01:15
Less: Basic scaffolding
//
//
// Scaffolding
// ====================================================================
// Body resets
// --------------------------------------------------------------------
html {
font-size: 62.5%;
@badlydrawnrob
badlydrawnrob / forms.less
Created February 6, 2013 01:49
Less: Basic forms
//
//
// Forms
// ====================================================================
form {
margin: 0 0 @line-height-base;
}
label {
display: block;
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query
* Source: http://core.trac.wordpress.org/browser/tags/3.5.1/wp-includes/query.php
*/
$args = array(
@badlydrawnrob
badlydrawnrob / .gitignore_global
Last active February 6, 2019 19:22
Global Git Ignore file
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
@badlydrawnrob
badlydrawnrob / .editorconfig
Last active December 13, 2015 20:47
EditorConfig is awesome: http://EditorConfig.org
# editorconfig.org
root = true
[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->