Skip to content

Instantly share code, notes, and snippets.

@ahstro
ahstro / dabblet.css
Last active August 29, 2015 14:23 — forked from LeaVerou/dabblet.css
/**
* (C)Leanest CSS spinner ever
*/
@keyframes spin {
to { transform: rotate(1turn); }
}
.spinner {
position: relative;
import Regex
alphanumericRegex =
Regex.regex "^[A-Za-z0-9]*$"
allAlphanumeric : String -> Bool
allAlphanumeric =
Regex.contains alphanumericRegex