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" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBQu1pFTW2ni8iwdASum9iueNpCRoG3HCY&sensor=false"></script> | |
<script> | |
var mapa = document.getElementById("mapa-frame"); | |
if(mapa){ | |
var latlong=new google.maps.LatLng("28.6525409", "-106.1142289"), | |
mapOptions = { | |
center: latlong, | |
zoom: 14, | |
scrollwheel: false, |
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
$("#contact-form").submit(function(e){ | |
e.preventDefault(); | |
$(".error").hide(); | |
$this = $(this); | |
var data = $(this).serialize(), | |
url = $(this).attr("action"); | |
$.ajax(url,{ | |
data: data, | |
type: "POST", |
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
.e-l | |
&.e-l-b | |
&:after | |
border-bottom 1px solid white | |
&.e-l-small | |
&:after | |
width 10% | |
&.e-l-medium | |
&:after | |
width 30% |
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
//Apply this to the containter | |
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="filters"> | |
<defs> | |
<filter id="blur"> | |
<feGaussianBlur in="SourceGraphic" stdDeviation="20" result="blur" /> | |
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" /> | |
<feComposite in="SourceGraphic" in2="goo" operator="atop"/> | |
</filter> | |
</defs> |
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
<style> | |
/* Define the height parent */ | |
#parent{ | |
height: 500px; | |
} | |
.astable{ | |
width: 100%; | |
height: 100%; | |
display: table; | |
.ascell{ |
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
<a href="#" data-go="#node-element" class="go">Go to</a> | |
<script type="text/javascript"> | |
$(".go").click(function(e){ | |
//We prevent the default scroll | |
e.preventDefault(); | |
var $this = $(this), | |
to = $this.attr("data-go"), |