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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| /*** Clickable Panels ***/ | |
| #clickable-panels-wrap { | |
| overflow: auto; | |
| } | |
| #clickable-panels-wrap > .clickable-panels { | |
| float: left; | |
| } |
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
| #espresso-thank-you-page-overview-dv { | |
| display: -webkit-box; /* Syntax for very old safari browsers - seems to cause conflict on Galaxy S3 "Internet app" though */ | |
| display: -moz-box; | |
| display: -ms-flexbox; | |
| display: -webkit-flex; | |
| display: flex; | |
| -webkit-box-orient: vertical; | |
| flex-flow: column; | |
| } |
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
| <a href="https://support.google.com/maps/answer/3544418?hl=en">Click here</a> for instructions to embed a google map! |
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 if ( is_user_logged_in() ) : ?> | |
| <a href="<?php echo wp_logout_url( get_permalink() ); ?>">Log Out</a> | |
| <?php endif; ?> |
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
| <FilesMatch "\.(?i:pdf)$"> | |
| ForceType application/octet-stream | |
| Header set Content-Disposition attachment | |
| </FilesMatch> |
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
| .extra-container-wrap.clickable-panels { | |
| /* Backgrounds and Styling*/ | |
| /* TODO: EDIT THIS */ | |
| } | |
| .clickable-panels.extra-container { | |
| margin: auto; | |
| max-width: 960px; | |
| } |
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
| <script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script> |
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
| ** | |
| * Enqueue custom fonts. | |
| */ | |
| function custom_fonts() { | |
| /* TODO: UPDATE THEME VERSION NUMBER AND ADD YOUR OWN FONT STYLES */ | |
| wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '1.0' ); | |
| wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,300italic,400italic,600italic', array(), '1.0' ); | |
| } |
OlderNewer