This file contains hidden or 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
/** | |
* Forms | |
* @module forms | |
*/ | |
form | |
width 100% | |
margin 30px auto 0 | |
text-align left | |
font-size 1em | |
&.vertical |
This file contains hidden or 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
$basefont = 14px | |
rem($list) | |
$max = length(arguments) | |
for $i in (0..$max - 1) | |
$list[$i] = round(( arguments[$i] / $basefont )rem , 3) | |
return $list | |
// Example usage: |
This file contains hidden or 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
// settings.styl | |
// Grid Settings | |
jeet = { | |
gutter: 2, | |
parent-first: false, | |
layout-direction: LTR | |
} | |
g = jeet.gutter |
This file contains hidden or 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
$basefont = 14px | |
em(size, parentFontSize = 0) | |
if parentFontSize == 0 | |
font-size round(( size / $basefont )em , 3) | |
else | |
font-size round(( size / parentFontSize )em , 3) | |
rem(size) | |
font-size ( size )px | |
font-size round(( size / $basefont )rem , 3) |
This file contains hidden or 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 Chinito = (function() { | |
var st = { | |
voz: '#voz', | |
viewVideo: '.video-panel', | |
meGusta: '#megusta', | |
compartir: '#compartir', | |
aviso: '.aviso', | |
buscaVehiculo: '.busca-vehiculo', | |
btnRegister: '#btnRegister', |
This file contains hidden or 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
// ParsleyConfig definition if not already set | |
window.ParsleyConfig = window.ParsleyConfig || {}; | |
window.ParsleyConfig.i18n = window.ParsleyConfig.i18n || {}; | |
window.ParsleyConfig.i18n.es = $.extend(window.ParsleyConfig.i18n.es || {}, { | |
defaultMessage: "Este valor parece ser inválido.", | |
type: { | |
email: "Ingrese un email válido.", | |
url: "Ingrese una URL válida.", | |
number: "Ingrese un número válido.", |
This file contains hidden or 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
module.exports = function(grunt) { | |
var path = { | |
jadeflux : "jadeflux/", | |
styflux : "styl/", | |
coffee : "coffee/", | |
public : "../public/", | |
static : "../public/static/o/" | |
}; | |
// Configuración para proyectos y tareas |
This file contains hidden or 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
// Jeet 5 - http://jeet.gs | |
/* Syntax Quick Reference | |
-------------------------- | |
column(ratios = 1, offset = 0, cycle = 0, uncycle = 0) | |
span(ratio = 1, offset = 0) | |
shift(ratios = 0, col_or_span = column) | |
unshift() | |
edit() |
This file contains hidden or 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
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
// clean | |
clean: { | |
options: {force: true}, | |
build: { | |
src: [cfg.js_compiled_source_path] | |
} | |
}, |
This file contains hidden or 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
{ | |
"name": "NuestroMercado", | |
"description": "NuestroMercado Automatic Frontend Flow", | |
"version": "3.1.0", | |
"devDependencies": { | |
"grunt-contrib-requirejs": "~0.4.0", | |
"grunt": "~0.4.2", | |
"grunt-cli": "0.1.x", | |
"grunt-exec": "~0.4.0", | |
"grunt-replace": "~0.6.0", |