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
| // isMobile | |
| var isMobile = { | |
| Android: function() { | |
| return navigator.userAgent.match(/Android/i); | |
| }, | |
| BlackBerry: function() { | |
| return navigator.userAgent.match(/BlackBerry/i); | |
| }, | |
| iOS: function() { |
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
| /*! | |
| * Bootstrap v3.3.7 (http://getbootstrap.com) | |
| * Copyright 2011-2017 Twitter, Inc. | |
| * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
| */ | |
| .container { | |
| margin-right: auto; | |
| margin-left: auto; | |
| padding-left: 15px; |
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
| var mediaPoint = '(max-width: px)'; | |
| if (window.matchMedia(mediaPoint).matches) { | |
| }; |
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 removeEmpty() { | |
| const empty = jQuery("p").filter(function() { | |
| const html = jQuery(this).html(); | |
| return html === " "; | |
| }); | |
| empty.remove(); | |
| // } | |
| // setTimeout(removeEmpty, 0); |
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="hidden"></div> | |
| <div class="loader"> | |
| <div class="loader_inner"></div> | |
| </div> | |
| <div class="bg"></div> | |
| @keyframes spin { |
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
| @supports ((position:sticky) or (position:-webkit-sticky)){ | |
| .class { | |
| position: -webkit-sticky; | |
| position: sticky; | |
| } | |
| } |
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
| <picture> | |
| <source srcset="" media="(max-width: 991px)"> | |
| <img alt="image" src=""> | |
| </picture> |
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
| $.urlParam = function(name){ | |
| var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href); | |
| return results[1] || 0; | |
| } | |
| var params = 'params'; | |
| var param = $.urlParam('type'); | |
| if (param == params) { | |
| $('.className').addClass('className'); | |
| } |
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
| /* js-toggle-left-slidebar */ | |
| .js-toggle-left-slidebar { | |
| position: relative; | |
| float: left; | |
| width: 35px; | |
| height: 17px; | |
| margin-right: 10px; | |
| vertical-align: top; | |
| text-indent: -9999px; |