Last active
August 29, 2015 14:18
-
-
Save arshaw/8f7ff89d93a4fbc48b7d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<div class="app-card"> | |
<div class="app-card__title"></div> | |
<div class="app-card__content"></div> | |
</div> | |
<!-- a variation --> | |
<div class="app-card app-card--tall"> | |
<div class="app-card__title"></div> | |
<div class="app-card__content"></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 characters
.app-card | |
height: 400px | |
&__title | |
font-weight: bold | |
&__content | |
color: #ccc | |
/* a variation */ | |
&--tall | |
height: 800px | |
.app-card__title | |
font-size: 1.5em | |
.app-card__content | |
font-size: 1.1em |
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
.app-card { | |
height: 400px; | |
} | |
.app-card__title { | |
font-weight: bold; | |
} | |
.app-card__content { | |
color: #ccc; | |
} | |
/* a variation */ | |
.app-card--tall { | |
height: 800px; | |
} | |
.app-card--tall .app-card__title { | |
font-size: 1.5em; | |
} | |
.app-card--tall .app-card__content { | |
font-size: 1.1em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment