This file contains 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
{ | |
"Page": { | |
"BackgroundColor": "rgb(135,186,237)", | |
"BackgroundImageUrl": null, | |
"BackgroundImageBlendMode": null, | |
"BackgroundGradient": "linear-gradient(30deg, rgba(135,186,237,1) 0%, rgba(162,219,254,1) 32%, rgba(161,255,221,1) 100%)", | |
"PageFontFace": "Roboto", | |
"PageFontWeight": "300", | |
"PageFontSize": "12px" | |
}, |
This file contains 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
// Updated since the official one on NPM is extremely out of date | |
declare interface PackeryOptions | |
{ | |
/** | |
* [itemSelector Specifies which child elements to be used as item elements. Setting itemSelector is always recommended. itemSelector is useful to exclude sizing elements] | |
* @type {string} | |
*/ | |
itemSelector?: string; |
This file contains 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 URL: http://www.netflix.com/browse/genre/________ | |
Action & Adventure: 1365 | |
Action Comedies: 43040 | |
Action Sci-Fi & Fantasy: 1568 | |
Action Thrillers: 43048 | |
Adult Animation: 11881 | |
Adventures: 7442 | |
African Movies: 3761 | |
Alien Sci-Fi: 3327 |
This file contains 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
// -------------------------------------------------- | |
// Flexbox LESS mixins | |
// Credit to: https://gist.github.com/jayj/ for the mixins | |
// -------------------------------------------------- | |
// Flexbox display | |
// flex or inline-flex | |
.flex-display(@display: flex) { | |
display: ~"-webkit-@{display}"; | |
display: ~"-moz-@{display}"; |