Skip to content

Instantly share code, notes, and snippets.

@hatefulcrawdad
Created August 22, 2012 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hatefulcrawdad/3423565 to your computer and use it in GitHub Desktop.
Save hatefulcrawdad/3423565 to your computer and use it in GitHub Desktop.
BuzzApp | Features
/* Features Styles - CSS */
#features {
margin-top: 70px;
}
#features article {
padding-top: 146px;
background-position: 8px 34px;
background-repeat: no-repeat;
}
#features article h3 {
margin-bottom: 6px;
}
#features .proof1 {
background-image: url('../images/icon-bee.png?1345591494');
}
#features .proof2 {
background-image: url('../images/icon-know.png?1345591486');
}
#features .proof3 {
background-image: url('../images/icon-mic.png?1345591476');
}
#features .proof4 {
background-image: url('../images/icon-instant.png?1345591511');
}
----------------------------------------------------------------
/* Features Styles - SCSS */
#features {
margin-top: 70px;
article {
padding-top: ms(9);
background-position: ($columnGutter / 2) ms(3);
background-repeat: no-repeat;
h3 {
margin-bottom: ms(0) - 10;
}
}
.proof1 {
background-image: image-url('icon-bee.png')
}
.proof2 {
background-image: image-url('icon-know.png')
}
.proof3 {
background-image: image-url('icon-mic.png')
}
.proof4 {
background-image: image-url('icon-instant.png')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment