Last active
August 29, 2015 14:07
-
-
Save alecperkins/b32ebf51d76b064693b6 to your computer and use it in GitHub Desktop.
Revisions
-
alecperkins revised this gist
Oct 10, 2014 . 1 changed file with 14 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ <div class="ProductShowcase"> <img class="_Image" src="..."> <p class="_Description">...</p> </div> <div class="TeamMemberProfile -featured"> <img class="_Image" src="..."> <p class="_Description">...</p> </div> <div class="TeamMemberProfile"> <img class="_Image" src="..."> <p class="_Description">...</p> </div> -
alecperkins revised this gist
Oct 10, 2014 . 4 changed files with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes.File renamed without changes.File renamed without changes. -
alecperkins revised this gist
Oct 10, 2014 . 3 changed files with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ } .TeamMemberProfile { @include extend(Highlight, image left); &.-featured { @include extend-variants(Highlight, large); } } 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 charactersOriginal file line number Diff line number Diff line change @@ -3,5 +3,5 @@ .TeamMemberProfile +extend(Highlight, image left) &.-featured +extend-variants(Highlight, large) 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 charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,7 @@ .TeamMemberProfile ._Image { float: left; } .TeamMemberProfile.-featured { font-size: 18px; } .ProductShowcase { -
alecperkins revised this gist
Oct 10, 2014 . 1 changed file with 21 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ %Highlight { color: black; font-size: 14px; &%-image--right { ._Image { float: right; } } &%-image--left { ._Image { float: left; } } &%-large { font-size: 18px; } &%-dark { background: black; color: white; } } -
alecperkins created this gist
Oct 10, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ .ProductShowcase { @include extend(Highlight, dark, image right); } .TeamMemberProfile { @include extend(Highlight, image left); &:first-child { @include extend-variants(Highlight, large); } } 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ .ProductShowcase +extend(Highlight, dark, image right) .TeamMemberProfile +extend(Highlight, image left) &:first-child +extend-variants(Highlight, large) 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ .ProductShowcase, .TeamMemberProfile { color: black; font-size: 14px; } .ProductShowcase ._Image { float: right; } .TeamMemberProfile ._Image { float: left; } .TeamMemberProfile:first-child { font-size: 18px; } .ProductShowcase { background: black; color: white; }