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
| .joe { | |
| color: green; | |
| } |
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
| ... on ContentfulContentBlockGrid { | |
| id | |
| identifier | |
| sectionTitle | |
| displayCategory | |
| contentBlocks { | |
| id | |
| body { | |
| body | |
| } |
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
| import _ from 'underscore'; | |
| /** | |
| * | |
| * @param {string} term | |
| * Checks if the term exists or not. Primary a helper function. | |
| * A term can be a full query parameter or just the name | |
| * EX: 'thank-you' or 'thank-you=true' | |
| * | |
| */ | |
| export const getUrlParam = term => { |
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
| function test_post_publish( $post_id, $post, $update ) { | |
| if (get_post_type( $post_id ) != 'report') return; | |
| if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; | |
| $post_status = get_post($post_id)->post_status; | |
| if ($post_status != 'publish') return; | |
| // If this is just a revision, don't send the email. | |
| if ( wp_is_post_revision( $post_id ) ) return; | |
| $post_title = get_the_title( $post_id ); |
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
| { | |
| "always_show_minimap_viewport": true, | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/Seti_UI/Scheme/Seti.tmTheme", | |
| "font_options": | |
| [ | |
| "gray_antialias" | |
| ], | |
| "font_size": 18, | |
| "ignored_packages": |
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="portfolio-item">thing</div> | |
| <div class="portfolio-item">thing</div> | |
| <div class="portfolio-item">thing</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
| <div class="portfolio-item">thing</div> | |
| <div class="portfolio-item">thing</div> | |
| <div class="portfolio-item">thing</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
| // ---- | |
| // Sass (v3.4.4) | |
| // Compass (v1.0.1) | |
| // ---- | |
| $font-size: 12; | |
| @function em($target, $context: $font-size ){ | |
| @return ($target / $context) * 1em; | |
| } |
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.4) | |
| // Compass (v1.0.1) | |
| // ---- | |
| $icon-names: (strategy '\e002') (twitter '\e003')(github '\e004'); | |
| @each $name, $pua in $icon-names { |
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.4) | |
| // Compass (v1.0.1) | |
| // ---- | |
| @function random-decimal($ceil){ | |
| $decimal: random($ceil) * 0.1; | |
| @return $decimal; | |
| } |
NewerOlder