-
-
Save piscis/9386266 to your computer and use it in GitHub Desktop.
Compare SASS/SCSS/CSS base syntax
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
.block-content img.img-thumbnail { | |
width: 35%; | |
} | |
.block-content img.img-thumbnail.pull-left { | |
margin-right: 8px; | |
} | |
.block-content img.img-thumbnail.pull-rigth { | |
margin-left: 8px; | |
} |
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
.block-content | |
img | |
&.img-thumbnail | |
width: 35% | |
&.pull-left | |
margin-right: 8px | |
&.pull-rigth | |
margin-left: 8px |
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
.block-content { | |
img { | |
&.img-thumbnail { | |
width: 35%; | |
&.pull-left { | |
margin-right: 8px; | |
} | |
&.pull-rigth { | |
margin-left: 8px; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment