Skip to content

Instantly share code, notes, and snippets.

.alphabetical-border {
border-left: 1px solid orange;
border-right: 1px solid orange;
border-top: 1px solid orange;
}
.alphabetical {
align-items: stretch;
background-color: orange;
display: flex;
flex-grow: 1;
flex-wrap: wrap;
font-size: 0.875rem;
height: 60vh;
overflow-wrap: break-word;
padding: 1rem;
.property-order {
position: relative;
top: 10px;
display: flex;
flex-wrap: wrap;
flex-grow: 1;
align-items: stretch;
width: 100%;
height: 60vh;
background-color: orange;
@antonjb
antonjb / README
Last active December 20, 2015 15:28 — forked from joelambert/README
Drop in replace functions for setTimeout() & setInterval() that
make use of requestAnimationFrame() for performance where available
http://www.joelambert.co.uk
Copyright 2011, Joe Lambert.
Free to use under the MIT license.
http://www.opensource.org/licenses/mit-license.php
@antonjb
antonjb / layers_export.jsx
Created December 10, 2012 06:47
Illustrator Layer to SVG Exporter
/*
* Layers to SVG - layers_export.jsx
* @version 0.1
* Improved PageItem selection, which fixed centering
*
* @author Anton Ball
* Exports all layers to SVG Files
* I didn't want every layer in the SVG file so it first creates a new document
* and one by one copies each layer to that new document while exporting it out
* as an SVG.