View index.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Parts of Speech: We Do</title> | |
</head> | |
<body> | |
<h1 id = "header">This page is about using variables with jQuery.</h1> | |
<div id="background"> | |
<div id ="sentence"></div> | |
</div> |
View index.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Parts of Speech: We Do</title> | |
</head> | |
<body> | |
<h1 id = "header">This page is about using variables with jQuery.</h1> | |
<div id="background"> | |
<div id ="sentence"></div> | |
</div> |
View gulp_file.js
var gulp = require('gulp'); | |
var plumber = require('gulp-plumber'); | |
var rename = require('gulp-rename'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
var concat = require('gulp-concat'); | |
var jshint = require('gulp-jshint'); | |
var uglify = require('gulp-uglify'); | |
var imagemin = require('gulp-imagemin'); | |
var cache = require('gulp-cache'); | |
var minifycss = require('gulp-minify-css'); |
View SassMeister-input.scss
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// sass-maps-plus (ve4d32a1dc2) | |
// ---- | |
@import "sass-maps-plus"; | |
$base-font-size: 16; |
View SassMeister-input.scss
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// sass-maps-plus (ve4d32a1dc2) | |
// ---- | |
@import "sass-maps-plus"; | |
$viewport: ( | |
width: ( |
View osx-for-hackers.sh
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |