Skip to content

Instantly share code, notes, and snippets.

View jesgundy's full-sized avatar

Jesse Gundy jesgundy

View GitHub Profile
@jesgundy
jesgundy / alpha.scss
Created June 13, 2012 17:21
IE RGBA Filter
// Color format is #AARRGGBB where 'A' is alpha
background: rgba(0,0,0,0.3);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#44000000,endColorstr=#44000000);
@jesgundy
jesgundy / selection.scss
Created May 21, 2012 00:05
Text selection color
::selection {
background: #000;
}
::-moz-selection {
background: #000;
}