Skip to content

Instantly share code, notes, and snippets.

View ravenwilde's full-sized avatar
😸
code, cats & caffeine

Jennifer Scroggins ravenwilde

😸
code, cats & caffeine
View GitHub Profile
@evantravers
evantravers / _col.scss
Last active March 10, 2017 22:35
Really simple wordpress shortcode column system… relies on scss and Bourbon Neat to work.
.col {
@include span-columns(4);
}
@for $num from 1 through 12 {
.col-#{$num} {
@include span-columns($num);
@include omega(#{12/$num}n);
}
}
@d3noob
d3noob / .block
Last active November 30, 2019 18:19
Simple d3.js tree diagram
license: mit
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Responsive Design Testing</title>
<style>
body { margin: 20px; font-family: sans-serif; overflow-x: scroll; }
.wrapper { width: 6000px; }
.frame { float: left; }
h2 { margin: 0 0 5px 0; }