Skip to content

Instantly share code, notes, and snippets.

View gpassarelli's full-sized avatar

Gabriel Passarelli gpassarelli

View GitHub Profile
@gpassarelli
gpassarelli / gist:2134851
Created March 20, 2012 12:42
CSS: File Type Icon
a[href^="http:"] {
display:inline-block;
padding-right:14px;
background:transparent url(/Images/ExternalLink.gif) center right no-repeat;
}
a[href^="mailto:"] {
display:inline-block;
padding-left:20px;
line-height:18px;
background:transparent url(/Images/MailTo.gif) center left no-repeat;
@gpassarelli
gpassarelli / gist:2134845
Created March 20, 2012 12:42
CSS: Horizontal Centered List
#centeredmenu {
float:left;
width:100%;
overflow:hidden;
position:relative;
}
#centeredmenu ul {
clear:left;
float:left;
list-style:none;
@gpassarelli
gpassarelli / gist:2134720
Created March 20, 2012 12:34
CSS: Prevent Bounce Scroll in Lion
html, body {
height: 100%;
overflow: hidden;
height: 100%;
}