I hereby claim:
- I am hectorpalmatellez on github.
- I am hpt (https://keybase.io/hpt) on keybase.
- I have a public key whose fingerprint is BB2D D936 494E 3B98 2DD9 CC47 CB02 025B 9BDD 5A30
To claim this, I am signing this object:
| { | |
| "env": { | |
| "browser": 1 // http://eslint.org/docs/user-guide/configuring#specifying-environments | |
| }, | |
| "globals": { // http://eslint.org/docs/user-guide/configuring#specifying-globals | |
| // jQuery | |
| "$": 1, | |
| "$j": 1 | |
| }, | |
| "rules": { |
| { | |
| "close_windows_when_empty": true, | |
| "color_scheme": "Packages/Seti_UI/Scheme/Seti.tmTheme", | |
| "command": "paste", | |
| "draw_white_space": "all", | |
| "font_size": 12.0, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], |
| { | |
| "close_windows_when_empty": true, | |
| "color_scheme": "Packages/Theme - Brogrammer/brogrammer.tmTheme", | |
| "command": "paste", | |
| "draw_white_space": "all", | |
| "font_size": 12.0, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], |
| @mixin placeholder { | |
| &::-webkit-input-placeholder {@content} | |
| &:-moz-placeholder {@content} | |
| &::-moz-placeholder {@content} | |
| &:-ms-input-placeholder {@content} | |
| } | |
| // Se usa así: | |
| // input { | |
| // @include placeholder { | |
| // color: #000; |
I hereby claim:
To claim this, I am signing this object:
| // Generated on 2014-06-03 using generator-bones 0.0.4 | |
| // Optimizado para uso en Octano | |
| 'use strict'; | |
| var LIVERELOAD_PORT = 35729; | |
| var lrSnippet = require('connect-livereload')({port: LIVERELOAD_PORT}); | |
| var mountFolder = function (connect, dir) { | |
| return connect.static(require('path').resolve(dir)); | |
| }; |
| ## Using Oh-my-szh | |
| ## Place in .zshrc `alias servidorcito="python -m SimpleHTTPServer 8000"` | |
| ## After restarting the Terminal, you could put yourself in any folder of your computer and run `$ servidorcito` to open it in your browser by typing localhost:8000 |
| // http://viljamis.com/blog/2013/prototyping-responsive-typography/?utm_source=Responsive+Design+Weekly&utm_campaign=76e7785581-Responsive_Design_Weekly_046&utm_medium=email | |
| $browser-context: 16; // Default | |
| @function em($pixels, $context: $browser-context) { | |
| @return #{$pixels/$context}em | |
| } |
| @mixin tipodecelular($breakpoint, $ancho, $alto) { | |
| @media screen and (max-width: $breakpoint) { | |
| width: $ancho; | |
| height: $alto; | |
| } | |
| } | |
| // Teniendo algo como lo siguiente: | |
| // Breakpoints | |
| $break-small: 320px; |
| @mixin repimg($img, $ancho, $alto) { | |
| display: block; | |
| text-indent: -9999px; | |
| background: { | |
| image: url($img); | |
| repeat: no-repeat; | |
| } | |
| width: $ancho; | |
| height: $alto; | |
| } |