Skip to content

Instantly share code, notes, and snippets.

View travm's full-sized avatar
😱

Travis Maynard travm

😱
View GitHub Profile
@travm
travm / wvu-colors-myth
Created January 29, 2014 14:45
WVU Official Web Color Palette (Myth)
/* WVU Official Color Palette */
:root {
var-gold: #eeb111;
var-blue: #00447c;
var-alt-blue: #005daa;
var-sec-yellow: #ffe894;
var-sec-lightblue: #a0c4da;
var-sec-blue: #0079c1;
var-sec-darkblue: #27318b;
@travm
travm / Fetch.sublime-settings
Last active December 21, 2015 00:59
NetTuts+ Fetch Package Settings for Sublime Text
{
"files":
{
"blueprint-ie": "https://raw.github.com/joshuaclayton/blueprint-css/master/blueprint/ie.css",
"blueprint-screen": "https://raw.github.com/joshuaclayton/blueprint-css/master/blueprint/screen.css",
"hotkeys": "https://raw.github.com/tzuryby/jquery.hotkeys/master/jquery.hotkeys.js",
"jquery": "http://code.jquery.com/jquery.min.js",
"jquery-placeholder": "https://raw.github.com/mathiasbynens/jquery-placeholder/master/jquery.placeholder.min.js",
"markdown": "https://raw.github.com/michelf/php-markdown/master/markdown.php",
"money.js": "http://josscrowcroft.github.com/money.js/money.min.js",
@travm
travm / wvu-colors-sass
Last active December 20, 2015 15:39
WVU Official Web Color Palette (SASS)
/* WVU Official Color Palette */
$gold: #eeb111;
$blue: #00447c;
$alt-blue: #005daa;
$sec-yellow: #ffe894;
$sec-lightblue: #a0c4da;
$sec-blue: #0079c1;
$sec-darkblue: #27318b;
$sec-orange: #d9531e;
@travm
travm / html.sublime-snippet
Last active December 20, 2015 02:39
HTML Snippet for Sublime Text 2
<snippet>
<content><![CDATA[
<!doctype html>
<html lang="en">
<head>
<title>${1}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="description" content="${2}" />
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}