Skip to content

Instantly share code, notes, and snippets.

View caycefischer's full-sized avatar

Cayce caycefischer

  • Toronto
View GitHub Profile
@caycefischer
caycefischer / betterhelvetica.css
Created February 29, 2012 18:56
Use a better helvetica
/* http://css-tricks.com/snippets/css/better-helvetica */
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
@caycefischer
caycefischer / imagelessGrid.css
Created February 27, 2012 04:18
generate a custom grid overlay on any element with linear-gradient and :before
/* really can't remember where I saw this, sorry someone out there! :( */
.grid:before {
background-size: 20px 20px;
position: absolute;
left: 0; top: 0; right: 0; bottom: 0;
content: '';
background:
-webkit-linear-gradient(left, #5FB7ED 1px, transparent 1px),
-webkit-linear-gradient(#5FB7ED 1px, transparent 1px);
@caycefischer
caycefischer / framelessFontMath
Created December 7, 2011 07:44
Proper column widths for elements with font-size !=1em in Frameless Grid
.element {
font-size: 1.5em;
max-width: @7cols; /* can't say this because the font-size skews the calculation */
/* Basically, reverse the ratio to get the number back to 1em: (1 * 1.5 = 1.5), (1.5 * 0.66666666667 = 1) */
max-width: (( 7 * (@column + @gutter) * 0.66666666667) - @gutter * 0.66666666667) / @em;
}