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
| # output files | |
| *.jpg filter=lfs diff=lfs merge=lfs -text | |
| *.pdf filter=lfs diff=lfs merge=lfs -text | |
| *.png filter=lfs diff=lfs merge=lfs -text | |
| # raw files | |
| *.CR2 filter=lfs diff=lfs merge=lfs -text | |
| # work files | |
| *.sketch filter=lfs diff=lfs merge=lfs -text |
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
| // padding to force an aspect ratio | |
| // -> apply mixin to a container element, and the child element will be constrained | |
| // -> mostly used for images, but should work on basically anything | |
| @mixin media-aspect($w, $h, $child_el: ".media-aspect-content") { | |
| position: relative; | |
| overflow: hidden; | |
| &::before, &:before { | |
| display: block; | |
| content: " "; |
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
| // padding to force an aspect ratio | |
| // -> apply mixin to a container element, and the child element will be constrained | |
| // -> mostly used for images, but should work on basically anything | |
| @mixin media-aspect($w, $h, $child_el: ".media-aspect-content") { | |
| position: relative; | |
| overflow: hidden; | |
| &::before, &:before { | |
| display: block; | |
| content: " "; |
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
| // Default styles for components | |
| // -> so they're still usable if JS fails or they're not supported | |
| jpw-gallery:not(:defined) { | |
| display: block; | |
| list-style: none; | |
| } |
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
| 14.15.3 |
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
| { | |
| "extends": "stylelint-config-sass-guidelines", | |
| "plugins": [ | |
| "stylelint-scss", | |
| "stylelint-order" | |
| ], | |
| "rules": { | |
| "indentation": "tab", | |
| "selector-no-qualifying-type": [ | |
| 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
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "extends": [ | |
| "standard" | |
| ], | |
| "globals": { |
OlderNewer