Skip to content

Instantly share code, notes, and snippets.

@Jaswetz
Created June 12, 2012 17:37
Show Gist options
  • Save Jaswetz/2918944 to your computer and use it in GitHub Desktop.
Save Jaswetz/2918944 to your computer and use it in GitHub Desktop.
SCSS: site.scss
//----------------------------------------------------------------------------
// site.scss
// The base styles and base layout go here.
//----------------------------------------------------------------------------
// ---------------------------------------------------------------------------
// ROOT
html
{
background : $bodyBackground;
font-size : 62.5%;
-webkit-overflow-scrolling : touch;
-webkit-tap-highlight-color : lighten($baseColor, 75%);
-webkit-text-size-adjust : 100%;
-ms-text-size-adjust : 100%;
}
body
{
margin : 0;
padding : 0;
width : 100%;
background-color : transparent;
font-family : $baseFontFamily;
font-size: $baseFontSize;
line-height : $baseLineHeight;
color : $baseTextColor;
}
//Render media-ready elements at any size
img,
embed,
object,
video
{
max-width: 100%;
}
// ---------------------------------------------------------------------------
// LAYOUT
.page
{
@include container;
@include susy-grid-background;
}
// HEADER
.header
{
margin: 0 auto;
}
// CONTENT
.content
{
}
// FOOTER
footer
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment