Skip to content

Instantly share code, notes, and snippets.

View hougasian's full-sized avatar
🏠
Working from home

Kevin Hougasian hougasian

🏠
Working from home
View GitHub Profile
@hougasian
hougasian / css_hex_colors.scss
Last active September 20, 2015 18:59
CSS named colors sorted by HEX. Hope it helps someone.
// CSS named colors sorted by HEX color
// http://www.w3schools.com/cssref/css_colorsfull.asp
$hex-colors:
#000000,
#000080,
#00008B,
#0000CD,
#0000FF,
#006400,
#008000,
@hougasian
hougasian / gist:a668f43bfdcfe0ba8274
Last active January 4, 2016 14:17
sass icon button using font awesome and map-get
// Font Awesome icons used
$icons: (
check: "\f00c",
check-o: "\f05d",
check-circle: "\f058",
circle: "\f111",
circle-o: "\f10c",
circle-o-thin: "\f1db",
pencil: "\f040",
plus: "\f067",
@hougasian
hougasian / gulpfile.js
Last active August 31, 2017 19:55
Gulpfile running Sass, Pleeease, and a local server
// Requires node/npm and installed packages
// npm i gulp --save
// npm i gulp-pleeease, gulp-sass, gulp-connect --save
var gulp = require('gulp'),
connect = require('gulp-connect'),
pleeease = require('gulp-pleeease'),
sass = require('gulp-sass');
var PleeeaseOptions = {
@hougasian
hougasian / gulpfile.js
Created November 3, 2016 19:26
Gulp 4 gulpfile.js for Sass and JS
// Gulpfile.js running on stratumui,
// a css framework available on npmjs.com
var gulp = require('gulp'),
sass = require('gulp-sass'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename');
var paths = {
styles: {