Skip to content

Instantly share code, notes, and snippets.

@vasslehel
vasslehel / index.html
Created November 2, 2016 14:10 — forked from jfsiii/index.html
Full-Screen Layout using Flexbox
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Holy Grail</title>
<style>
/* some basic styles. nothing to do with flexbox */
header, footer,
nav, article, aside {
border: 1px solid black;
@vasslehel
vasslehel / .eslintrc
Last active October 24, 2015 19:41 — forked from cletusw/.eslintrc
ESLint - My starter .eslintrc
{
// http://eslint.org/docs/rules/
"ecmaFeatures": {
"binaryLiterals": false, // enable binary literals
"blockBindings": false, // enable let and const (aka block bindings)
"defaultParams": false, // enable default function parameters
"forOf": false, // enable for-of loops
"generators": false, // enable generators
"objectLiteralComputedProperties": false, // enable computed object literal property names