Skip to content

Instantly share code, notes, and snippets.

View somecallmejosh's full-sized avatar

Joshua Briley somecallmejosh

View GitHub Profile
<input
type="text"
name="search"
value="search..."
alt="search" onblur="if(this.value=='') this.value='search...';"
onfocus="if(this.value=='search...')
this.value='';"
>
<style type="text/css">
.myGist {background-color: black; height: 50px; width: 100%;}
.myGist__list {padding: 0; margin: 0;}
.myGist__list--item {display: inline-block; list-style: none;}
.myGist__list--link {color: white; line-height: 50px; padding: 0 10px;}
</style>
<div class="myGist">
<ul class="myGist__list">
<li class="myGist__list--item"><a class="myGist__list--link" href="http://americastestkitchen.com">America's Test Kitchen</a></li>
@somecallmejosh
somecallmejosh / index.html
Last active February 15, 2016 02:58
HTML: Skeleton Baseline #snippet
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SITE TITLE</title>
<!-- Disable tap highlight on IE -->
<meta name="msapplication-tap-highlight" content="no">
@somecallmejosh
somecallmejosh / gulpfile.js
Last active February 15, 2016 02:58
JavaScript: Gulpfile Baseline #snippet
var gulp = require('gulp'),
jshint = require('gulp-jshint'),
sass = require('gulp-sass'),
imagemin = require('gulp-imagemin'),
browserify = require('browserify'),
uglify = require('gulp-uglify'),
minifyHTML = require('gulp-minify-html'),
concat = require('gulp-concat'),
rename = require('gulp-rename'),
source = require('vinyl-source-stream'),
@somecallmejosh
somecallmejosh / .gitignore
Last active February 15, 2016 02:57
DOT FILES: Git Ignore Baseline #snippet
.DS_Store
*/.DS_Store
node_modules
build/
_site
.sass-cache
.ruby-version
.ruby-gemset
vendor
# Apache Server Configs v2.11.0 | MIT License