Skip to content

Instantly share code, notes, and snippets.

View barak007's full-sized avatar

barak igal barak007

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>3D CSS Loading Spinner</title>
<style>
/* Base styles and variables */
:root {
@barak007
barak007 / objectify.js
Last active July 11, 2017 09:34
Stylis objectify plugin
'use strict';
var camelCaseCSS = require("camelcase-css");
var stack;
function Declaration(name, value) {
this.type = 'decl';
this.name = name;
this.value = value;
}