Skip to content

Instantly share code, notes, and snippets.

View kilokeith's full-sized avatar

keith kilokeith

View GitHub Profile
@kilokeith
kilokeith / keybase.md
Created January 10, 2018 22:58
keybase proof

Keybase proof

I hereby claim:

  • I am kilokeith on github.
  • I am kilo_keith (https://keybase.io/kilo_keith) on keybase.
  • I have a public key ASCQeBCumzsM-fGTSfRlmA0nugR6E9bdnVxVngx8Uilp8Qo

To claim this, I am signing this object:

@kilokeith
kilokeith / gist:4392413
Last active December 10, 2015 06:08 — forked from anonymous/gist:4392401
# In your compass config.rb, add the susy gem path to the requires - adjust for your own paths
# Require any additional compass plugins here.
require "/Users/keith/.rvm/gems/ruby-1.9.3-p194/gems/susy-1.0.5/lib/susy.rb"
@kilokeith
kilokeith / less-ie-rgba-mixin
Created October 5, 2011 02:03
LESS IE rgba mixin
.ie_rgba(@hex, @alpha:256){
@newhex: `"#" + (Math.round("@{alpha}" * 256)).toString(16) + "@{hex}"`;
background: transparent;
-ms-filter: ~'"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{newhex},endColorstr=@{newhex})"'; /* IE8 */
filter: ~'progid:DXImageTransform.Microsoft.gradient(startColorstr=@{newhex},endColorstr=@{newhex})'; /* IE6 & 7 */
zoom: 1;
}