Skip to content

Instantly share code, notes, and snippets.

View caycefischer's full-sized avatar

Cayce caycefischer

  • Toronto
View GitHub Profile
Single line, no attribution:
<figure class="quote">
<blockquote>It is the unofficial force—the Baker Street irregulars.</blockquote>
</figure>
Single line, with attribution and optional cite:
<figure class="quote">
<blockquote>It is the unofficial force—the Baker Street irregulars.</blockquote>
@caycefischer
caycefischer / html5.haml
Created October 12, 2012 06:02 — forked from fnhipster/html5.haml
HTML5 HAML Template
!!! 5
%html
%head
%title= "Your Website"
%meta{ :content => "", :name => "description" }
%meta{ :content => "", :name => "author" }
%meta{ :content => "3 days", :name => "revisit-after" }
%link{ :href => "http://creativecommons.org/licenses/by/3.0/", :rel => "license", :title => "Creative Commons Attribution 3.0 Unported License" }
%link{ :href => "/feed", :rel => "alternate", :title => "Atom", :type => "application/atom+xml" }
%link{ :href => "/css/screen.css", :media => "screen", :rel => "stylesheet" }
@caycefischer
caycefischer / mq.scss
Created September 26, 2012 02:56 — forked from antsa/mq.scss
Media Query mixin - @MQ
// A mixin for media queries: @mq
//
// Use with keywords in $medias array:
// @include mq($media: wide) {
// ...
// }
//
// Or use with manual queries:
// @include mq("all and (min-width:33em)") {
// ...
@caycefischer
caycefischer / better-gist-styles.css
Created July 30, 2012 01:08 — forked from jnrbsn/better-gist-styles.css
Better styles for embedding GitHub Gists
/* Better styles for embedding GitHub Gists */
.gist{font-size:13px;line-height:18px;margin-bottom:20px;width:100%}
.gist pre{font-family:Menlo,Monaco,'Bitstream Vera Sans Mono','Courier New',monospace !important}
.gist-meta{font-family:Helvetica,Arial,sans-serif;font-size:13px !important}
.gist-meta a{color:#26a !important;text-decoration:none}
.gist-meta a:hover{color:#0e4071 !important}
@caycefischer
caycefischer / GitHub 2.css
Created July 29, 2012 16:49 — forked from ngs/GitHub 2.css
New GitHub CSS for Mou.app
body {
font-size: 14px;
line-height: 1.6;
background-color: white;
font: 13.34px helvetica,arial,freesans,clean,sans-serif;
*font-size: small;
color: black;
}
table {
@caycefischer
caycefischer / dabblet.css
Created July 22, 2012 14:02
css inline svg by Tunghsiao Liu
/**
* Cash icon (c) Tunghsiao Liu
*/
.store {
margin: 0 0 1.1em;
line-height: 1.6;
font-size: 28px;
font-family: 'Helvetica Neue', sans-serif;
@caycefischer
caycefischer / dabblet.css
Created June 26, 2012 16:12 — forked from sirbrad/dabblet.css
Mobile first button abstraction
/**
* Mobile first button abstraction
*/
.btn {
display: block;
text-align: center;
text-decoration: none;
padding: 1em 0;
box-sizing: border-box;
@caycefischer
caycefischer / Fullpage.html
Created May 11, 2012 22:06 — forked from anonymous/Fullpage.html
A web page created at CodePen.io
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404 Page &middot; CodePen</title>
<style>
@caycefischer
caycefischer / hack.sh
Last active September 20, 2023 16:41 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2279031/hack.sh | sh
#
@caycefischer
caycefischer / dabblet.css
Created March 3, 2012 17:56 — forked from LeaVerou/dabblet.css
Move in a circle without wrapper elements
/**
* Move in a circle without wrapper elements
* Idea by Aryeh Gregor, simplified by Lea Verou
*/
@keyframes rot {
from {
transform: rotate(0deg)
translate(-150px)
rotate(0deg);