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.21) | |
| // Compass (v1.0.3) | |
| // ---- | |
| // Sass modifiers mixin by Sarah Dayan | |
| // Generate All Your Utility Classes with Sass Maps: frontstuff.io/generate-all-your-utility-classes-with-sass-maps | |
| // http://frontstuff.io | |
| // https://github.com/sarahdayan |
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
| <?php | |
| //ata functions.php te dite hobe | |
| Step# 01: Register Custom Post | |
| ****************************** | |
| # Register Custom Post | |
| function wp_tutorials_post() { | |
| register_post_type( 'cluster-portfolio', | |
| array( |
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
| // I hate converting units so here's how to do | |
| // px to rem conversion with a fallback to px | |
| // for older browsers... | |
| /** | |
| * Resize font from one type to another | |
| * @param {[type]} $fontSize the font size that you want | |
| * @param {[type]} $toUnit: rem the unit you want to convert to | |
| * @param {[type]} $fromUnitSpecific: px default unit we're going to convert from (if you don't set it) | |
| * |
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) | |
| // ---- | |
| $baseSize: 16px; | |
| $convertBase: $baseSize; | |
| html { | |
| font-size: percentage($baseSize / 16px); |
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
| /* Gallery styles available to add to your style.css */ | |
| .gallery {} | |
| a.gallery-image {} | |
| a.gallery-image img {} |