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
@-webkit-keyframes wobble { | |
0% { -webkit-transform: translateX(0%); } | |
15% { -webkit-transform: translateX(-25%) rotate(-5deg); } | |
30% { -webkit-transform: translateX(20%) rotate(3deg); } | |
45% { -webkit-transform: translateX(-15%) rotate(-3deg); } | |
60% { -webkit-transform: translateX(10%) rotate(2deg); } | |
75% { -webkit-transform: translateX(-5%) rotate(-1deg); } | |
100% { -webkit-transform: translateX(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
.entry-body { | |
-webkit-animation-fill-mode:both; | |
-moz-animation-fill-mode:both; | |
-ms-animation-fill-mode:both; | |
-o-animation-fill-mode:both; | |
animation-fill-mode:both; | |
-webkit-transition: all 0.25s ease-in-out; | |
-moz-transition: all 0.25s ease-in-out; | |
-ms-transition: all 0.25s ease-in-out; | |
-o-transition: all 0.25s ease-in-out; |
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
$(document).bind('didRefreshWidgetContent', function () { | |
top.location.href = 'http://google.com/'; // Change the URL | |
}); |
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
// setup comments for mobile width | |
var w = screen.availWidth; | |
w = w < 320 ? 320:w; | |
if((typeof window.orientation) == 'number' && w <= 480) { | |
$(document.getElementsByTagName('fb:comments')).add('.fb-comments').each(function () { | |
this.setAttribute('width', w); | |
this.setAttribute('data-width', w); | |
}); | |
}; |
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
Framework CSS | |
@import url(//apps.wildfireapp.com/consumer/scorch/v1/scorch.css); | |
FitVids | |
<script src="//apps.wildfireapp.com/consumer/scorch/v1/fitvids.js"></script> | |
Enquire | |
<script src="//apps.wildfireapp.com/consumer/scorch/v1/enquire.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
background-color:transparent; | |
background:rgba(0,0,0,0.75); | |
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000)"; /* IE8 */ | |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000); /* IE6 & 7 */ | |
zoom: 1; |
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
.span4:nth-child(1) .entry-lightbox { top:800px !important; } | |
.span4:nth-child(2) .entry-lightbox { top:800px !important; } | |
.span4:nth-child(3) .entry-lightbox { top:800px !important; } | |
.span4:nth-child(4) .entry-lightbox { top:1061px !important; } | |
.span4:nth-child(5) .entry-lightbox { top:1061px !important; } | |
.span4:nth-child(6) .entry-lightbox { top:1061px !important; } | |
.span4:nth-child(7) .entry-lightbox { top:1322px !important; } | |
.span4:nth-child(8) .entry-lightbox { top:1322px !important; } |
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 channel; | |
if ($(body).hasClass('fbfanpage')) { | |
channel = 'fbfanpage'; | |
} else if ($(body).hasClass('fbcanvas')) { | |
channel = 'fbcanvas'; | |
} else if ($(body).hasClass('microsite')) { | |
channel = 'microsite'; | |
} else if ($(body).hasClass('mobile')) { | |
channel = 'mobile'; |