Skip to content

Instantly share code, notes, and snippets.

View mkanzit's full-sized avatar

Mossaab KANZIT mkanzit

View GitHub Profile
@mkanzit
mkanzit / cloudSettings
Created April 22, 2017 14:44
Visual Studio Code Sync Settings Gist
{"lastUpload":"2017-04-22T14:44:19.014Z","extensionVersion":"v2.6.2"}
@mkanzit
mkanzit / gulpfile.js
Created July 5, 2016 14:35 — forked from tcarlsen/gulpfile.js
My personally gulp file
/*jslint indent:2, node:true, sloppy:true*/
var
gulp = require('gulp'),
coffee = require('gulp-coffee'),
rename = require("gulp-rename"),
uglify = require('gulp-uglify'),
sass = require('gulp-sass'),
styl = require('gulp-styl'),
concat = require('gulp-concat'),
csso = require('gulp-csso'),
@mkanzit
mkanzit / responsive-align.less
Created June 3, 2016 14:13 — forked from ohryan/responsive-align.less
Bootstrap 3 Responsive Text Align
.text-xs-left { text-align: left; }
.text-xs-right { text-align: right; }
.text-xs-center { text-align: center; }
.text-xs-justify { text-align: justify; }
@media (min-width: @screen-sm-min) {
.text-sm-left { text-align: left; }
.text-sm-right { text-align: right; }
.text-sm-center { text-align: center; }
.text-sm-justify { text-align: justify; }