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> | |
<title>Holy Grail Layout</title> | |
<style> | |
body { | |
display: grid; | |
grid-template-rows: 100px 1fr 100px; | |
grid-template-columns: 200px 1fr 200px; | |
min-height: 100vh; | |
margin: 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
{ | |
"html": { | |
"filters":"html", | |
"extends":"html", | |
"snippets": { | |
"t_v": "{{ ${cursor} }}", | |
"t_c": "{# ${cursor} #}\n", | |
"t_block": "{% block $1 %}\n\t$2\n{% endblock %}\n", | |
"t_extends": "{% extends $1 %}", | |
"t_parent": "{{ parent() }}", |
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
{ | |
"output": "styles.min.css", | |
"autoprefixer": true, | |
"minifier": false, | |
"mqpacker": true, | |
"fallbacks": { | |
"variables": true, | |
"rem": ["62.5%", {"replace": false}], | |
"pseudoElements": true | |
} |
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 changeClass(elem,className1,className2){ | |
elem.className = (elem.className == className1)?className2:className1; | |
} | |
document.getElementById('menutoggle').onclick = function() { | |
changeClass(this, 'navtoogle active', 'navtoogle'); | |
} | |
// Many thanks to https://twitter.com/Martel_Louis |