Skip to content

Instantly share code, notes, and snippets.

@bradrice
Created March 31, 2015 12:58
Show Gist options
  • Save bradrice/d5b2674a8706f801dc9b to your computer and use it in GitHub Desktop.
Save bradrice/d5b2674a8706f801dc9b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<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>
// ----
// 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%;
}
}
@media (min-width: 960px) {
ul.triangle {
width: 30%;
}
}
@media (min-width: 760px) {
ul.triangle {
width: 20%;
}
}
<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