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
| // utils.js | |
| /** | |
| * Utils helpers | |
| */ | |
| /** | |
| * isEmptyObject - Check if Object is Empty | |
| * @param {Object} obj | |
| * @return {Boolean} | |
| * @example |
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
| #!/bin/bash | |
| # Meteor commands launcher | |
| PS3='Please select what you want to do: ' | |
| options=("Launch Meteor without settings" "Launch Meteor with Development settings" "Launch Meteor with Staging settings" "Launch Meteor with Production settings" "Setup the deployment on the Staging server" "Deploy the application to the Staging server" "Setup the deployment on the Production server" "Deploy the application to the Production server" "Reset Meteor" "Quit the launcher") | |
| select opt in "${options[@]}" | |
| do | |
| case $opt in | |
| "Launch Meteor without settings") | |
| meteor |
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
| $fonts: | |
| mama-shelter-bold mama_shelterbold bold normal, | |
| mama-shelter-light mama_shelterlight lighter normal, | |
| mama-shelter-regular mama_shelterregular normal normal; | |
| @each $font in $fonts { | |
| $font-name: nth($font, 1); | |
| $font-id: nth($font, 2); | |
| $font-weight: nth($font, 3); | |
| $font-style: nth($font, 4); |
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
| // ========================================================================== | |
| // Helpers | |
| // ========================================================================== | |
| // Switch ON/OFF | |
| // ========================================================================== | |
| $reset-margin: true; | |
| $margin: true; |
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
| // ========================================================================== | |
| // Helpers | |
| // ========================================================================== | |
| // Margin | |
| // ========================================================================== | |
| $orientations: top, right, bottom, left; | |
| $dimensions: 5, 10, 15, 20; |
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
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.7) | |
| // ---- | |
| $cols: ( | |
| half: 50%, | |
| full: 100%, | |
| third: 33.3333333%, | |
| quarter: 25%, |