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
| const { src, dest, watch, parallel, series, done } = require('gulp'), | |
| fs = require('fs'), | |
| gulpif = require('gulp-if'), | |
| del = require('del'), | |
| autoprefixer = require('gulp-autoprefixer'), | |
| pug = require('gulp-pug'), | |
| nunjucks = require('gulp-nunjucks'), | |
| sass = require('gulp-sass'), | |
| cleancss = require('gulp-clean-css'), | |
| purgecss = require('gulp-purgecss'), |
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
| //- vomela brand colors | |
| $blue: #004b98; | |
| $gray: #415464; | |
| $cyan: #00aeef; | |
| $purple: #592c82; | |
| $sb-cc: #96785e; | |
| $sb-pp: #d39100; | |
| $sb-sd: #c20430; | |
| $sb-ee: #648c1c; | |
| $sb-ft: #c14e00; |
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
| node_modules | |
| .DS_Store | |
| .DS_Store? | |
| *.cache |
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
| function main() { | |
| // errors feedback | |
| var errs = []; | |
| // Expand Appearance | |
| try { | |
| errs.push('Expand Appearance...ok\n'); | |
| app.executeMenuCommand('expandStyle'); | |
| } catch (e) { |
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
| # --------------------------------------------------------------------------- | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management | |
| # 6. Networking | |
| # 7. System Operations & Information |
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
| /* ------------------------------------------------------- | |
| Creates margin and padding helper classes | |
| Based on bootstrap 4's spacing helpers | |
| Samples: | |
| -------- | |
| .pt-3 { | |
| padding: 3rem; | |
| } |
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
| { | |
| "port": 8000, | |
| "files": ["./src/**/*.{html,css,js}"], | |
| "server": { "baseDir": "./src" } | |
| } |
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
| // ---------------------------------------- | |
| // Hugo Giraudel's Simple Asset Helper Function on CSS-Tricks | |
| // https://css-tricks.com/snippets/sass/simple-asset-helper-functions/ | |
| // ---------------------------------------- | |
| /// Base path for assets (fonts, images...), | |
| /// should not include trailing slash | |
| /// ---------------------------------------- | |
| /// @ access public | |
| /// @ type String |
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
| @mixin cover-div { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| } |
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
| // Place your settings in this file to overwrite the default settings | |
| { | |
| "editor.fontFamily": "Operator Mono", | |
| "editor.fontWeight": "300", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 17, | |
| "editor.lineHeight": 21, | |
| "editor.renderWhitespace": "boundary", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top", |
OlderNewer