Skip to content

Instantly share code, notes, and snippets.

View hectorpalmatellez's full-sized avatar

Héctor Palma Téllez hectorpalmatellez

View GitHub Profile
@hectorpalmatellez
hectorpalmatellez / placeholder-mixin
Created January 3, 2015 00:05
Mixin para placeholders
@mixin placeholder {
&::-webkit-input-placeholder {@content}
&:-moz-placeholder {@content}
&::-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}
// Se usa así:
// input {
// @include placeholder {
// color: #000;
@hectorpalmatellez
hectorpalmatellez / Preferences.sublime-settings
Last active August 29, 2015 14:14
Configuración de Sublime Text 3
{
"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"
],
{
"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"
],
@hectorpalmatellez
hectorpalmatellez / .eslintrc
Created July 27, 2015 13:57
Eslint settings
{
"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": {