Skip to content

Instantly share code, notes, and snippets.

@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
@vasslehel
vasslehel / dabblet.css
Created February 17, 2016 23:18
Untitled
div {
width: 200px;
height: 100px;
background-color: #BADA55;
position: relative;
}
span {
left: 20px;
top: 35px;
@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;