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 | |
| wp_tag_cloud( array( | |
| 'unit' => 'em', 'largest' => 1.5, 'smallest' => 0.8, | |
| 'taxonomy' => 'category', | |
| 'topic_count_text_callback' => function ( $count ) { | |
| return ( $count == 1 ) ? '1 post' : $count . ' posts'; | |
| } | |
| ) ); |
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="container"> | |
| <div class="row"> | |
| <div class="third column">1/3</div> | |
| <div class="two-thirds column">2/3</div> | |
| </div> | |
| <div class="row"> | |
| <div class="half column pull-right">1/2, pulled right</div> | |
| <div class="half column">1/2 column</div> | |
| </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
| /** Grid system **/ | |
| // Small screens (default) | |
| html { font-size: 100%; } | |
| .container { margin: 0 auto; max-width: 1000px; width: 90%; } | |
| *, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } | |
| .row { *zoom: 1; } | |
| .row:before, .row:after { content: " "; display: table; } | |
| .row:after { clear: both; } |
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
| { | |
| "color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme", | |
| "font_face": "Menlo", | |
| "font_size": 12, | |
| "highlight_line": true, | |
| "highlight_modified_tabs": true, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], |