Created
March 31, 2015 12:58
-
-
Save bradrice/d5b2674a8706f801dc9b 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
<ul class="triangle"> | |
<li>Some text</li> | |
<li>Some text</li> | |
<li>Some text</li> | |
<li>Some text</li> | |
</ul> | |
<p></p><div class="tri-right"></div>Some text</p> |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin respond-to($media) { | |
@if $media == desktop { | |
@media (min-width: 960px) { | |
@content; | |
} | |
} | |
@else if $media == tablet { | |
@media (min-width: 760px) { | |
@content; | |
} | |
} | |
} | |
ul.triangle { | |
@include respond-to('desktop'){ | |
width: 30%; | |
} | |
@include respond-to('tablet'){ | |
width: 20%; | |
} | |
} |
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
@media (min-width: 960px) { | |
ul.triangle { | |
width: 30%; | |
} | |
} | |
@media (min-width: 760px) { | |
ul.triangle { | |
width: 20%; | |
} | |
} |
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
<ul class="triangle"> | |
<li>Some text</li> | |
<li>Some text</li> | |
<li>Some text</li> | |
<li>Some text</li> | |
</ul> | |
<p></p><div class="tri-right"></div>Some text</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment