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
<nav class="main-nav"> | |
<ul> | |
<li> | |
<a href="/escola" title="" class="home"> | |
<i></i> | |
<span>Início</span> | |
</a> | |
</li> | |
<li class="dropdown"> |
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> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<html> | |
<head> | |
<title>An HTML5 Layout That Works in IE</title> | |
<!--[if lt IE 9]> | |
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script> | |
<![endif]--> |
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
$(".collapsible-content").hide(); | |
$(".collapsible-head").toggle(function(){ | |
$(this).addClass("active"); | |
}, function () { | |
$(this).removeClass("active"); | |
}); | |
$(".collapsible-head").off('click').on('click',function(){ | |
$(this).next(".collapsible-content").slideToggle(600); | |
}); |
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
<svg height="0" xmlns="http://www.w3.org/2000/svg"> | |
<filter id="drop-shadow"> | |
<feGaussianBlur in="SourceAlpha" stdDeviation="2.2"/> | |
<feOffset dx="12" dy="12" result="offsetblur"/> | |
<feFlood flood-color="rgba(0,0,0,0.5)"/> | |
<feComposite in2="offsetblur" operator="in"/> | |
<feMerge> | |
<feMergeNode/> | |
<feMergeNode in="SourceGraphic"/> | |
</feMerge> |
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
Show hidden characters
{ | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"font_face": "Source Code Pro", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"ignored_packages": | |
[ | |
"Vintage" |
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
$.fn.extend( { | |
limiter: function(limit, elem) { | |
$(this).on("keyup focus", function() { | |
setCount(this, elem); | |
}); | |
function setCount(src, elem) { | |
var chars = src.value.length; | |
if (chars > limit) { | |
src.value = src.value.substr(0, limit); | |
chars = limit; |
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
sethrefs = function () { | |
if (document.querySelectorAll) { | |
var datahrefs = document.querySelectorAll('[data-href]'), | |
dhcount = datahrefs.length; | |
while (dhcount-- > 0) { | |
var ele = datahrefs[dhcount], |
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
/*! | |
* Project Gruntfile | |
*/ | |
'use strict'; | |
module.exports = function( grunt ) { | |
// Dynamically load npm tasks |
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
// Sample grunt-jekyll grunt.js file | |
// https://github.com/dannygarcia/grunt-jekyll | |
/*global module:false*/ | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
jekyll: { |