The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55
will be the first on the list, already selected:
🇧🇷 [pt-BR]
The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55
will be the first on the list, already selected:
🇧🇷 [pt-BR]
Framework | Arquitetura de CSS | Pré-processador | Componentes | Suporte (browsers) | Suporte (comunidade) | Curva de aprendizado | Velocidade de desenvolvimento | Qualidade de código | Documentação | Dependências | Tamanho |
---|---|---|---|---|---|---|---|---|---|---|---|
Twitter Bootstrap | OOCSS | LESS/Sass | Muitos | IE8+ | Excelente | Média | Excelente | Ótima | 8/10 | jQuery | 255kb |
Zurb Foundation | OOCSS | Sass | Muitos+ | IE9+ | Ótima | Média | Excelente | Excelente | 9/10 | jQuery | 174kb |
Yahoo Purecss | SMACSS | - | Poucos | IE8+ | Ótima | Baixa | Boa | Execelente | 9/10 | - | 74kb |
/* jslint browser: true, jquery: true, devel: true*/ | |
/* | |
Dependencies: Tumblr.Flags | |
Tumblr.Utils.exceptions will automatically log window.onerror. | |
DO NOT write code like this. This is written to handle weird cases | |
where normal code should probably just fail. | |
*/ |
var yeoman = require('yeoman-generator'); | |
var argv = require('minimist')(process.argv.slice(2)); | |
module.exports = yeoman.generators.Base.extend({ | |
constructor: function (args, options) { | |
if (options['module-name']) { | |
// don't really remember why getting from argv with an options fallback | |
this.moduleName = argv['module-name'] || options['module-name']; | |
} else { |
var requestFullscreen = function (ele) { | |
if (ele.requestFullscreen) { | |
ele.requestFullscreen(); | |
} else if (ele.webkitRequestFullscreen) { | |
ele.webkitRequestFullscreen(); | |
} else if (ele.mozRequestFullScreen) { | |
ele.mozRequestFullScreen(); | |
} else if (ele.msRequestFullscreen) { | |
ele.msRequestFullscreen(); | |
} else { |
1 - Fork a repo
2 - Clone the sevntu.checkstyle project to your local machine (username – your Github user account name.):
$ git clone [email protected]:USERNAME/REPOSITORY.git
3 - Configure remotes:
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
// font family with optional fallbacks |
#!/bin/bash | |
# | |
# Home-rolled Smush.it, by Alex Dunae (http://dialect.ca). | |
# | |
# N.B. This script works for me; it may not work for you. | |
# Since it overwrites your images with the optimized version, you should | |
# backup your files before running this script and do a trial run before | |
# getting too excited. This is your disclaimer. | |
# | |
# Uses jpegtran (http://jpegclub.org/jpegtran/), part of libjpeg, |