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="typewriter"> | |
| <h1>some example text for ya</h1> | |
| </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
| jQuery( function($) { | |
| $( "#accordion:nth-child(1n)" ).accordion({ | |
| collapsible: true, | |
| active: false, | |
| heightStyle: "content" | |
| }); | |
| } ); | |
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
| body { | |
| font-family: Open Sans; | |
| } | |
| h1 { | |
| text-align: center; | |
| } | |
| #title { | |
| text-decoration: underline; |
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 | |
| //* Do NOT include the opening php tag shown above. Copy the code shown below. | |
| //* Enqueue Lato Google font | |
| add_action( 'wp_enqueue_scripts', 'sp_load_google_fonts' ); | |
| function sp_load_google_fonts() { | |
| wp_enqueue_style( 'google-font-lato', '//fonts.googleapis.com/css?family=Lato:300,700', array(), CHILD_THEME_VERSION ); | |
| } |
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 Ionicons | |
| add_action( 'wp_enqueue_scripts', 'bg_enqueue_ionicons' ); | |
| function bg_enqueue_ionicons() { | |
| wp_enqueue_style( 'ionicons', '//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css', array(), CHILD_THEME_VERSION ); | |
| } | |
| //* Change the footer text | |
| add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter'); | |
| function sp_footer_creds_filter( $creds ) { | |
| $creds = '[footer_copyright] · <p class="love">Made and Customized with <i class="icon ion-heart"></i> by Robert McMillin</p> |
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
| /* Smartphones (portrait and landscape) ----------- */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) { | |
| /* Styles */ | |
| } | |
| /* Smartphones (landscape) ----------- */ | |
| @media only screen | |
| and (min-width : 321px) { |
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
| @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { | |
| .largewhite br { content: ' '; } | |
| } |
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
| .stitched { | |
| padding: 20px; | |
| margin: 10px; | |
| background: #67bbab; | |
| color: #fff; | |
| font-size: 21px; | |
| font-weight: bold; | |
| line-height: 1.3em; | |
| border: 2px dashed #fff; |
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
| .mobile-hide { | |
| visibility: hidden; | |
| clip: rect(0px, 0px, 0px, 0px); | |
| position: absolute; | |
| display: none; | |
| } | |
| @media only screen and (min-width: 800px) { | |
| .mobile-hide { | |
| visibility: visible; |