Skip to content

Instantly share code, notes, and snippets.

View baldore's full-sized avatar

Camilo Orrego baldore

  • Seso Labor
  • Medellín, Colombia
View GitHub Profile
@baldore
baldore / build.js
Last active August 29, 2015 14:14 — forked from 0gust1/build.js
var extname = require('path').extname;
var Metalsmith = require('metalsmith');
var myth = require('myth');
var http = require('http');
var templates = require('metalsmith-templates');
var markdown = require('metalsmith-markdown');
var watch = require('metalsmith-watch');
/**
@baldore
baldore / rwd.css
Created October 18, 2013 15:52 — forked from trey/rwd.css
/* http://twitter.github.com/bootstrap/scaffolding.html#responsive */
/* Landscape phones and down */
@media (max-width: 480px) { ... }
/* Landscape phone to portrait tablet */
@media (max-width: 768px) { ... }
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 940px) { ... }