Last active
August 29, 2015 14:10
-
-
Save jeffkamo/036b0a161a47f321b776 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
// file: `/styles/templates/_plp.scss` | |
// --- | |
.t-plp { | |
// Note! | |
// | |
// This example code assume that the `.t-plp` class is | |
// on body. That means the html is `<body class="t-plp">` | |
} | |
// file: `/styles/templates/partials/_main.scss` | |
// --- | |
.t-main { | |
color: red; | |
} | |
// file: `/styles/components/_categories.scss` | |
// --- | |
.c-categories { | |
color: green; | |
} | |
// file: `/styles/components/_product-list.scss` | |
// --- | |
.c-product-list { | |
color: blue; | |
} | |
// file: `/styles/components/_product.scss` | |
// --- | |
.c-product { | |
color: block; | |
} | |
.c-product__description { | |
color: black; | |
} |
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
.t-main { | |
color: red; | |
} | |
.c-categories { | |
color: green; | |
} | |
.c-product-list { | |
color: blue; | |
} | |
.c-product { | |
color: block; | |
} | |
.c-product__description { | |
color: black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment