Created
November 14, 2015 21:18
-
-
Save nazimjamil/92a3aa7d6e1ed0d97713 to your computer and use it in GitHub Desktop.
Revisions
-
nazimjamil created this gist
Nov 14, 2015 .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,5 @@ <div class="block"> <div class="block__element"> <div class="block--modifer">Oh hai BEM</div> </div> </div> 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,15 @@ // ---- // libsass (v3.2.5) // ---- .block { padding: 20px; &__element { position: absolute; } &--modifer { color: red; } } 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,11 @@ .block { padding: 20px; } .block__element { position: absolute; } .block--modifer { color: red; } 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,5 @@ <div class="block"> <div class="block__element"> <div class="block--modifer">Oh hai BEM</div> </div> </div>