Skip to content

Instantly share code, notes, and snippets.

View jdsteinbach's full-sized avatar
💭
💻

James Steinbach jdsteinbach

💭
💻
View GitHub Profile
@jdsteinbach
jdsteinbach / SassMeister-input-HTML.haml
Last active August 29, 2015 14:17
Generated by SassMeister.com.
- colors = ['green', 'blue', 'yellow', 'red', 'silver']
- (colors).each do |color|
%div{ :class => "#{color} column" }
%p{ :class => "color-#{color}"} $color-#{color};
- (1...5).each do |i|
%p{ :class => "color-#{color}-#{i}"} $color-#{color}-#{i};
@jdsteinbach
jdsteinbach / SassMeister-input-HTML.html
Last active August 29, 2015 14:17
Generated by SassMeister.com.
<div class="element loading">Loading</div>
@jdsteinbach
jdsteinbach / SassMeister-input-HTML.haml
Last active June 3, 2023 13:01
Generated by SassMeister.com.
.box-1
.box-2
.box-3
.box-4
@jdsteinbach
jdsteinbach / SassMeister-input-HTML.haml
Last active August 29, 2015 14:16
Generated by SassMeister.com.
.box-1
.box-2
.box-3
.box-4
@jdsteinbach
jdsteinbach / SassMeister-input-HTML.html
Created March 11, 2015 13:16
Generated by SassMeister.com.
<div class="box">I'm in a box.</div>
@jdsteinbach
jdsteinbach / SassMeister-input-HTML.haml
Created March 4, 2015 19:06
Generated by SassMeister.com.
.box-1
.box-2
.box-3
.box-4
@jdsteinbach
jdsteinbach / Gruntfile.js
Created February 14, 2015 04:43
Grunt: Node-Sass, AutoPrefixer, serve & watch
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
options: {
sourceMap: true,
outputStyle: 'expanded'
@jdsteinbach
jdsteinbach / SassMeister-input.scss
Created February 10, 2015 20:14
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
@function pow(
$number,
$exponent
) {
$_return: 1;
@jdsteinbach
jdsteinbach / SassMeister-input.scss
Created February 7, 2015 17:03
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
.rgba-demo {
color: rgba(#383b52, .5);
}
@jdsteinbach
jdsteinbach / SassMeister-input.scss
Created January 13, 2015 01:39
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$blue: #2980b9;
$blue-dark: #20638f;
$blue-light: #3498db;
$red: #e74c3c;
$red-dark: #d62c1a;