Created
September 14, 2015 20:33
-
-
Save marksiemers/9f7238de048a1da84e0b 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="mobile"> | |
<div class="dates mobile"> | |
May 17th | |
</div> | |
</div> | |
<div class="desktop"> | |
<div class="dates"> | |
May 17th | |
</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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.dates { | |
font-family: serif; | |
color: black; | |
.mobile & { | |
font-size: 12px; | |
align: center; | |
} | |
.desktop & { | |
font-size: 16px; | |
padding-left:20px; | |
} | |
} |
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
.dates { | |
font-family: serif; | |
color: black; | |
} | |
.mobile .dates { | |
font-size: 12px; | |
align: center; | |
} | |
.desktop .dates { | |
font-size: 16px; | |
padding-left: 20px; | |
} |
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="mobile"> | |
<div class="dates mobile"> | |
May 17th | |
</div> | |
</div> | |
<div class="desktop"> | |
<div class="dates"> | |
May 17th | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment