Skip to content

Instantly share code, notes, and snippets.

View mrDarcyMurphy's full-sized avatar
🤘

Darcy Murphy mrDarcyMurphy

🤘
View GitHub Profile
@mrDarcyMurphy
mrDarcyMurphy / .jshintrc
Created September 25, 2014 17:50
.jshintrc
{
"bitwise": false,
"camelcase": true,
"curly": false,
"eqeqeq": false,
"es3": false,
"forin": true,
"freeze": true,
"immed": true,
"indent": 2,
@mrDarcyMurphy
mrDarcyMurphy / effen-functions.js
Last active December 22, 2015 09:49
Breaking down various function properties when they're called in various ways.
var global = this
// Terminal Colors
// FG
// \033[30m black
// \033[31m red
// \033[32m green
// \033[33m yellow
// \033[34m blue

CSS Layer Cake

A layered strategy to managing massive amounts of CSS across a massive amount of projects.

  1. Structural Foundation
  2. App Foundation
  3. UI Foundation
  4. Aesthetics
@mrDarcyMurphy
mrDarcyMurphy / index.html
Created March 5, 2012 19:04
OOCSS Inspired Responsive Framework
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<title>OOCSS Inspired Responsive Framework</title>
<link rel="stylesheet" href="./structure.css" />
</head>
<body>