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
html{ | |
overflow-x: hidden | |
} | |
body.modal-open{ | |
overflow: visible !important | |
padding-right: 0 !important | |
} | |
.modal.full-size { |
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(window).on('load', function () { | |
if(jQuery("#map").length){ | |
loadMap(); | |
} | |
}); | |
function loadMap() { | |
var script = document.createElement('script'); | |
script.defer = true; |
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 isTouchDevice(){ | |
return true == ('ontouchstart' in window || window.DocumentTouch && document instanceof DocumentTouch); | |
} | |
function current() { | |
var state='click'; | |
if(isTouchDevice()===true) { | |
state='touchstart'; | |
} | |
return {h : Math.max(document.documentElement.clientHeight, window.innerHeight || 0), w: Math.max(document.documentElement.clientWidth, window.innerWidth || 0),scroll:(window.pageYOffset || document.documentElement.scrollTop) - (document.documentElement.clientTop || 0),state:state}; | |
} |
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
.weatherfeed{ | |
color: rgba( 255, 255, 255, 1); | |
text-align: right; | |
font-size: 16px; | |
max-width:350px; | |
line-height: 1.43em; | |
background-position: 25% -50%; | |
background-repeat: no-repeat; | |
} |
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
.img{ | |
height: 100%; | |
background-image: url('img/content/slide1.jpg'); | |
background-repeat: no-repeat; | |
background-position: center center; | |
background-size: cover; | |
-webkit-transition: all 1.2s ease; | |
-moz-transition: all 1.2s ease; | |
-ms-transition: all 1.2s ease; | |
-o-transition: all 1.2s ease; |
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
[data-slides] { | |
background-image: url(../../uploads/banner1.jpg); /* Default image. */ | |
background-repeat: no-repeat; | |
background-position: center center; | |
background-size: cover; | |
-webkit-transition: all 0.7s ease; | |
-moz-transition: all 0.7s ease; | |
-ms-transition: all 0.7s ease; | |
-o-transition: all 0.7s ease; | |
transition: all 0.7s ease; |
NewerOlder