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
| // Use in console | |
| (async function () { | |
| let fileNamePrefix = 'fraction'; | |
| let images = [].slice.call(document.querySelectorAll('img')); | |
| | |
| console.log(`TOTAL # OF IMAGES => ${images.length}`); | |
| | |
| for (let i = 0; i < images.length; i++) { | |
| try { |
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
| /* ========================================================================== | |
| * Reset | |
| * ========================================================================== */ | |
| * { | |
| appearance: none; | |
| background-color: transparent; | |
| background-repeat: no-repeat; | |
| border: 0; | |
| border-radius: 0; | |
| font-family: inherit; |
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
| /* ========================================================================== | |
| * Global | |
| * ========================================================================== */ | |
| @import "_fonts"; | |
| @import "_mixins"; | |
| @import "_wordpress-wysiwyg"; | |
| * { | |
| border: 0; |
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
| /* ========================================================================== | |
| * Reset | |
| * ========================================================================== */ | |
| html { | |
| box-sizing: border-box; | |
| position: relative; | |
| } | |
| * { |
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
| /* ========================================================================== | |
| * Reset | |
| * ========================================================================== */ | |
| * { | |
| border: 0; | |
| margin: 0; | |
| padding: 0; | |
| -webkit-tap-highlight-color: transparent; | |
| } |
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
| { | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "comment", | |
| "comment storage.type", | |
| "comment variable", | |
| "comment support.variable", | |
| "comment support.class", |
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
| # From your Google Spreadsheet, select the menu item Tools > Script editor. | |
| # Copy and paste this code. | |
| # Replace uuid with the build_hooks uuid from your Netlify project. | |
| function onOpen() { | |
| SpreadsheetApp.getUi() | |
| .createMenu('Scripts') | |
| .addItem('Build', 'build') | |
| .addToUi(); | |
| } |