File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747 },
4848 {
4949 "name" : " Dogpatch" ,
50- "is_done" : false ,
50+ "is_done" : true ,
5151 "usage" : " dogpatch"
5252 },
5353 {
Original file line number Diff line number Diff line change 2222@import ' slumber' ;
2323@import ' brannan' ;
2424@import ' valencia' ;
25- @import ' kelvin' ;
25+ @import ' kelvin' ;
26+ @import ' juno' ;
27+ @import ' dogpatch' ;
Original file line number Diff line number Diff line change 1+ /*
2+ * Dogpatch
3+ *
4+ */
5+ @import ' shared' ;
6+ // mixin to extend dogpatch filter
7+ // @mixin dogpatch
8+ // @param $filters... {filter} - Zero to many css filters to be added
9+ // @example
10+ // img {
11+ // @include dogpatch;
12+ // }
13+ // or
14+ // img {
15+ // @include dogpatch(blur(2px));
16+ // }
17+ // or
18+ // img {
19+ // @include dogpatch(blur(2px)) {
20+ // /*...*/
21+ // };
22+ // }
23+ @mixin dogpatch ($filters ...) {
24+ @extend %filter-base ;
25+ filter : contrast (1.38 ) saturate (.85 ) brightness (1.08 ) $filters ;
26+
27+ @content ;
28+ }
29+
30+ // dogpatch Instagram filter
31+ %dogpatch ,
32+ .dogpatch {
33+ @include dogpatch ;
34+ }
You can’t perform that action at this time.
0 commit comments