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 ( $ ) { | |
"use strict" | |
/* CAROUSEL CLASS DEFINITION | |
* ========================= */ | |
var Carousel = function (element, options) { | |
this.$element = $(element) | |
this.options = options |
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
.clear_margin_padding() { | |
margin: 0 !important; | |
padding: 0 !important; | |
padding-left: 0px !important; | |
padding-right: 0px !important; | |
} | |
.rounded-corners (@radius: 5px) { | |
border-radius: @radius; | |
-webkit-border-radius: @radius; |
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
/* Mixin */ | |
.border-radius (@radius: 5px) { | |
-webkit-border-radius: @radius; | |
-moz-border-radius: @radius; | |
border-radius: @radius; | |
} | |
/* Mixin */ | |
.border-radius-custom (@topleft: 5px, @topright: 5px, @bottomleft: 5px, @bottomright: 5px) { | |
-webkit-border-radius: @topleft @topright @bottomright @bottomleft; |
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
/* Mixin */ | |
.box-shadow (@x: 0px, @y: 3px, @blur: 5px, @alpha: 0.5) { | |
-webkit-box-shadow: @x @y @blur rgba(0, 0, 0, @alpha); | |
-moz-box-shadow: @x @y @blur rgba(0, 0, 0, @alpha); | |
box-shadow: @x @y @blur rgba(0, 0, 0, @alpha); | |
} | |
/* Implementation */ | |
#somediv { | |
.box-shadow(5px, 5px, 6px, 0.3); |
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
/* Mixin */ | |
.transition (@prop: all, @time: 1s, @ease: linear) { | |
-webkit-transition: @prop @time @ease; | |
-moz-transition: @prop @time @ease; | |
-o-transition: @prop @time @ease; | |
-ms-transition: @prop @time @ease; | |
transition: @prop @time @ease; | |
} | |
/* Implementation */ |
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
/* Mixin */ | |
.transform (@rotate: 90deg, @scale: 1, @skew: 1deg, @translate: 10px) { | |
-webkit-transform: rotate(@rotate) scale(@scale) skew(@skew) translate(@translate); | |
-moz-transform: rotate(@rotate) scale(@scale) skew(@skew) translate(@translate); | |
-o-transform: rotate(@rotate) scale(@scale) skew(@skew) translate(@translate); | |
-ms-transform: rotate(@rotate) scale(@scale) skew(@skew) translate(@translate); | |
transform: rotate(@rotate) scale(@scale) skew(@skew) translate(@translate); | |
} | |
/* Implementation */ |
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> | |
<body> | |
<!-- live chat button --> | |
<a id="liveagent_button_online_573i00000004DD7" href="javascript://Chat" style="display: none;" onclick="liveagent.startChat('573i00000004DD7')"> | |
Online Chat | |
</a> | |
<div id="liveagent_button_offline_573i00000004DD7" style="display: none;"> | |
Offline Chat | |
</div> |
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
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<style type="text/css"> | |
/* Non-mobile first */ | |
@media screen and (max-width: 480px) { |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Single-Column Responsive Email Template</title> | |
<style> | |
@media only screen and (min-device-width: 541px) { | |
.content { |
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
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> |