For development, you will only need Node.js installed on your environement. And please use the appropriate Editorconfig plugin for your Editor (not mandatory).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Config */ | |
$arraySmartphone : '{"device": "phone", "googleMaps": false, "slider": false, "menu" : true}' !default; | |
$arraytablette : '{"device": "tablet", "googleMaps": true, "slider": false, "menu" : true}' !default; | |
$arrayDesktop : '{"device": "desktop", "googleMaps": true, "slider": true, "menu" : false}' !default; | |
/* List */ | |
$deviceList : ("phone" "tablet" "desktop" ) !default; // list of devices | |
$minWidthList : ("" "768px" "1025px" ) !default; // List min-width (empty if unspecified) | |
$maxWidthList : ("767px" "1024px" "" ) !default;// List max-width (empty if unspecified) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="fr" manifest="/manifeste.appcache"> | |
<head> | |
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]--> | |
<meta charset="UTF-8"> | |
<!-- Meta SEO --> | |
<title>Web App</title> | |
<meta name="author" content="author"> | |
<meta name="description" content="Description"> | |
<!-- RWD --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo gem install compass-sourcemaps --pre |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*------------------------------------*\ | |
App | |
\*------------------------------------*/ | |
.mixin | |
{ | |
@include colorTest(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*------------------------------------*\ | |
App | |
\*------------------------------------*/ | |
.color | |
{ | |
color: $mainColor; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
// takes in a callback so the engine knows when it'll be done | |
gulp.task('one', function(cb) { | |
// do stuff -- async or otherwise | |
cb(err); // if err is not null and not undefined, the orchestration will stop, and 'two' will not run | |
}); | |
// identifies a dependent task must be complete before this one begins | |
gulp.task('two', ['one'], function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Takes provided URL passed as argument and make screenshots of this page with several viewport sizes. | |
* These viewport sizes are arbitrary, taken from iPhone & iPad specs, modify the array as needed | |
* | |
* Usage: | |
* $ casperjs screenshots.js http://example.com | |
*/ | |
var casper = require("casper").create(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://code.hootsuite.com/css-at-hootsuite/ | |
http://mikeaparicio.com/2014/08/10/css-at-groupon/ | |
http://blog.trello.com/refining-the-way-we-structure-our-css-at-trello/ | |
http://markdotto.com/2014/07/23/githubs-css/ | |
http://codepen.io/chriscoyier/blog/codepens-css | |
http://ianfeather.co.uk/css-at-lonely-planet/ | |
https://medium.com/@fat/mediums-css-is-actually-pretty-fucking-good-b8e2a6c78b06 | |
http://blog.brianlovin.com/buffers-css/ | |
http://dev.ghost.org/css-at-ghost/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Main class | |
* font-size : rem | |
* other properties : em | |
*/ | |
.org-Component { | |
font-size: 1rem; | |
padding:1em; | |
} | |
/* |
OlderNewer