Skip to content

Instantly share code, notes, and snippets.

View twitchy's full-sized avatar

Reeve Jolliffe twitchy

View GitHub Profile
@twitchy
twitchy / 0_reuse_code.js
Created November 7, 2013 21:41
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
@twitchy
twitchy / blockquote.css
Created February 15, 2013 21:02
Simple blockquote
blockquote {
background:#f9f9f9;
border-left:10px solid #ccc;
margin:1.5em 10px;
padding:.5em 10px;
quotes:"\201C""\201D""\2018""\2019";
}
blockquote:before {
color:#ccc;
content:open-quote;
@twitchy
twitchy / text-selection.css
Created February 15, 2013 20:37
change default text selection
::selection {
background-color: #dd2020;
color: #fff;
}
::-moz-selection {
background-color: #dd2020;
color: #fff;
}
@twitchy
twitchy / flip.css
Created February 15, 2013 20:33
css flip
.flip {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);