Skip to content

Instantly share code, notes, and snippets.

View flxa's full-sized avatar

Nicholas Fletcher flxa

View GitHub Profile
@flxa
flxa / relational-columns.css
Last active October 2, 2018 07:16
Generated by SassMeister.com.
.relational__column {
flex: 1 0 100%;
padding-bottom: 2rem;
}
.relational__column:first-child:nth-last-child(2) {
flex: 1 0 50%;
}
.relational__column:first-child:nth-last-child(2) ~ .relational__column {
@flxa
flxa / keybase.md
Created July 19, 2017 09:54
Keybase proof

Keybase proof

I hereby claim:

  • I am flxa on github.
  • I am flxa (https://keybase.io/flxa) on keybase.
  • I have a public key ASCuQhGvl0bh1DBUABJBGlZV_samEw1pDw3R4os3GuBViQo

To claim this, I am signing this object:

@flxa
flxa / designer.html
Last active August 29, 2015 14:18
designer
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-app.html">
<polymer-element name="designer-app">
<template>
<style>
:host {
position: absolute;
AddType application/vnd.ms-fontobject .eot
AddType font/ttf .ttf
AddType font/otf .otf
AddType application/x-font-woff .woff
/*
* Parsley.js allows you to verify your form inputs frontend side, without writing a line of javascript. Or so..
*
* Author: Guillaume Potier - @guillaumepotier
*/
!function ($) {
'use strict';
function throttle( fn, time ) {
var t = 0;
return function() {
var args = arguments, ctx = this;
clearTimeout(t);
t = setTimeout( function() {
fn.apply( ctx, args );
}, time );
};