This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Sorting Gallery</title> | |
<style></style> | |
</head> | |
<body> | |
<div class="container container-fluid"> | |
<div class="row"> | |
<div data-editor="code" data-title='Sorting Gallery' class="col-md-12 gallery gallery-sortable"> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Accordion - Item</title> | |
<style></style> | |
</head> | |
<body> | |
<div class="container container-fluid accordionPage"> | |
<div class="row"> | |
<div data-editor="html" data-title='Accordion Item' class="col-md-12 accordionItem"> |
This file contains 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
$('.fullWidthBanner img').on('bestfit',function(){ | |
var css; | |
var ratio=$(this).width() / $(this).height(); | |
var pratio=$(this).parent().width() / $(this).parent().height(); | |
if (ratio<pratio) css={width:'auto', height:'100%'}; | |
else css={width:'100%', height:'auto'}; | |
$(this).css(css); | |
}).on('load', function(){ | |
$(this).trigger('bestfit'); | |
}).trigger('bestfit'); |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Gallery</title> | |
<style></style> | |
</head> | |
<body> | |
<div class="container container-fluid greyBand galleryBand" data-questions="background-color|border-top-color" data-options="color|color"> | |
<div class="row"> | |
<div class="col-md-12 col-sm-12" data-droppable="none" data-dummy=""> |
This file contains 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
#custom1_mod li a{ | |
cursor: default; | |
} | |
#custom1_mod li a.btn{ | |
cursor: pointer; | |
} | |
@keyframes fadeInBottomBig { | |
0% { | |
opacity: 0; | |
transform: translateY(2000px); |
This file contains 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 body = document.body, | |
timer; | |
window.addEventListener('scroll', function() { | |
clearTimeout(timer); | |
if(!body.classList.contains('disable-hover')) { | |
body.classList.add('disable-hover') | |
} | |
timer = setTimeout(function(){ |
This file contains 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
@keyframes spin { | |
to { transform: rotate(1turn); } | |
} | |
.progress { | |
position: relative; | |
display: inline-block; | |
width: 5em; | |
height: 5em; | |
margin: 0 .5em; |
This file contains 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
<link rel="alternate" type="application/rss+xml" title="RSS Feed for Your_website.com" href="www.yourwebsite.com/rss/all" /> |
This file contains 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 type="text/javascript"> | |
var s = "{dateinfo}"; | |
s = s.replace(/<[^>]+>[^<]*<[^>]+>|<[^\/]+\/>/ig, " at "); | |
document.write(s); | |
</script> |
NewerOlder