Skip to content

Instantly share code, notes, and snippets.

@highread
highread / 0_reuse_code.js
Last active August 29, 2015 14:14
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@highread
highread / dabblet.css
Created February 16, 2013 16:46 — forked from daneden/dabblet.css
CSS Photo Album
/* CSS Photo Album */
/* Rebound of this shot by @daryl: http://drbl.in/fwwM */
* {
margin: 0;
padding: 0;
position: relative;
box-sizing: border-box;
}
@highread
highread / dabblet.css
Created February 16, 2013 16:38 — forked from daneden/dabblet.css
Untitled
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAVUlEQVQYGV2OgQ0AIQgDu4ZzMKBDMSBPeTEVEyQEri0AWESAlW9nLZm9F8alLFbOXlB9P6lK3krZH5JKRR6QSsNzZpJLJW+mDnk9ZyZaKEnPzaNzaB+YaWuR6GfrqQAAAABJRU5ErkJggg==),
linear-gradient(#456,#123);
min-height: 100%;
@highread
highread / dabblet.css
Created February 16, 2013 16:34 — forked from louisbullock/dabblet.css
Coding App [CSS]
/* Coding App [CSS] */
/* Made with ♥ by Louis Bullock */
/* ----------------------------------------*/
/* BASICS */
/* ----------------------------------------*/
html,body {
height: 100%;
overflow: hidden;
}