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
<form id="contact-form" action="//formspree.io/your@email.com" method="post"> | |
<input type="text" name="Name" placeholder="Name" required> | |
<input type="email" name="Email" placeholder="Email" required> | |
<textarea name="Message" cols="30" rows="6" placeholder="Message" required></textarea> | |
<!-- CONFIG --> | |
<input class="is-hidden" type="text" name="_gotcha"> | |
<input type="hidden" name="_subject" value="Subject"> | |
<input type="hidden" name="_cc" value="email@cc.com"> | |
<!-- /CONFIG --> | |
<input class="submit" type="submit" value="Send"> |
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
{ | |
"documents": [ | |
{ | |
"id": "QM-1", | |
"name": "Quality Control", | |
"tags": ["HW", "SaMD"] | |
}, | |
{ | |
"id": "SOP-6", | |
"name": "Training", |
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
/* All HubSpot Forms | |
========================================================================== */ | |
/* Form Field (selector for form field wrapper) */ | |
.hs-form .hs-form-field {} | |
/* Descriptions (targets class applied to Help Text divs) */ | |
.hs-form .hs-field-desc {} | |
/* Labels (selects field labels and error messages) */ |
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
$('.magnific-portuguese').magnificPopup({ | |
tClose: 'Fechar', | |
tLoading: 'Carregando...', | |
gallery: { | |
tPrev: 'Anterior', | |
tNext: 'Próxima', | |
tCounter: '%curr% de %total%' | |
}, | |
image: { | |
tError: '<a href="%url%">A imagem</a> não pode ser carregada.' |
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
(function(){ | |
var parallax = document.querySelectorAll(".parallax"), | |
speed = 0.5; | |
window.onscroll = function(){ | |
[].slice.call(parallax).forEach(function(el,i){ | |
var windowYOffset = window.pageYOffset, | |
elBackgrounPos = "50% " + (windowYOffset * speed) + "px"; |
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
ffmpeg -i huge-file.mp4 -vcodec libx264 -preset veryfast smaller-file.mp4 |
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
<label for="estados-brasileiros">Estados</label> | |
<select name="estados-brasileiros" id="estados-brasileiros"> | |
<option value="ac">Acre</option> | |
<option value="al">Alagoas</option> | |
<option value="ap">Amapá</option> | |
<option value="am">Amazonas</option> | |
<option value="ba">Bahia</option> | |
<option value="ce">Ceará</option> | |
<option value="df">Distrito Federal</option> | |
<option value="es">Espírito Santo</option> |
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
<div class="grid-overlay"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-xs-1"><span></span></div> | |
<div class="col-xs-1"><span></span></div> | |
<div class="col-xs-1"><span></span></div> | |
<div class="col-xs-1"><span></span></div> | |
<div class="col-xs-1"><span></span></div> | |
<div class="col-xs-1"><span></span></div> | |
<div class="col-xs-1"><span></span></div> |
NewerOlder