Skip to content

Instantly share code, notes, and snippets.

View toh82's full-sized avatar

Tobias Hartmann toh82

View GitHub Profile
@toh82
toh82 / SassMeister-input-HTML.haml
Last active January 8, 2016 08:26
Bootstrap Grid with SCSS Susy and Breakpoint
%div.grid__container
%div.grid__row
%div.grid__col.grid__col--xs-2
foo
%div.grid__col.grid__col--xs-2
foo
%div.grid__col.grid__col--xs-4
foo
%div.grid__col.grid__col--xs-2
foo
@toh82
toh82 / gulp-config.json
Created June 19, 2015 12:47
Gulp Configurable Tasks
{
"theme": "default",
"minifyCss": true,
"uglifyJS": true,
"bless" : {
"useImport": false
},
"bootstrap": {
"js": [
"bower_components/bootstrap/js/transition.js",
@toh82
toh82 / SassMeister-input.scss
Created September 18, 2014 12:13
SCSS get value from List
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
$list: 10px, 15px, 20px;
@function getListEntry ($list, $index) {
@if length($list) >= $index {
@return nth($list, $index);