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
| body { | |
| &:after { | |
| content: "< #{map-get($grid-breakpoints, sm)} (xs)"; | |
| position: fixed; | |
| z-index: 99999; | |
| padding: 2px 15px; | |
| bottom: 0; | |
| left: 0; | |
| border-top-right-radius: 5px; | |
| background: blue; |
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
| { | |
| "💍":"diamond | engagement ring | diamond ring | diamond rings | diamonds | engagement rings", | |
| "🆎":"blood type AB", | |
| "❣":"heart", | |
| "🇱🇨":"Saint Lucia | Saint Lucian flag", | |
| "🇮🇪":"Ireland | Irish flag", | |
| "🇨🇮":"Côte d’Ivoire | Ivory Coast | Ivorian flag", | |
| "💎":"diamond | gem | gemstone | jewel | diamonds | gems | gemstones | jewels", | |
| "☠️":"skull and crossbones | poison | poisonous", | |
| "👩💻":"technology worker | tech worker | technologist | techie | IT worker | Apple genius | woman in technology | woman tech worker | woman technologist | woman IT worker | woman in IT | woman Apple genius", |
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
| /** | |
| * This is a simple AWS Lambda function that will look for a given file on S3 and return it | |
| * passing along all of the headers of the S3 file. To make this available via a URL use | |
| * API Gateway with an AWS Lambda Proxy Integration. | |
| * | |
| * Set the S3_REGION and S3_BUCKET global parameters in AWS Lambda | |
| * Make sure the Lambda function is passed an object with `{ pathParameters : { proxy: 'path/to/file.jpg' } }` set | |
| */ | |
| var AWS = require('aws-sdk'); |