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="https://code.jquery.com/jquery-2.1.4.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
| /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ | |
| /** | |
| * 1. Set default font family to sans-serif. | |
| * 2. Prevent iOS and IE text size adjust after device orientation change, | |
| * without disabling user zoom. | |
| */ | |
| html { |
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
| .clearfix:after { | |
| visibility: hidden; | |
| display: block; | |
| content: " "; | |
| height: 0; | |
| font-size: 0; | |
| 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
| <?php | |
| if ($_POST){ | |
| function mime_header_encode($str, $data_charset, $send_charset) { | |
| if($data_charset != $send_charset) | |
| $str=iconv($data_charset,$send_charset.'//IGNORE',$str); | |
| return ('=?'.$send_charset.'?B?'.base64_encode($str).'?='); | |
| } | |
| class TEmail { |
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^="#"], a[href^="."]').click( function(){ | |
| var scroll_el = $(this).attr('href'); | |
| if ($(scroll_el).length != 0) { | |
| $('html, body').animate({ scrollTop: $(scroll_el).offset().top }, 1000); | |
| } | |
| return false; | |
| }); |
NewerOlder