Skip to content

Instantly share code, notes, and snippets.

@matthewcopeland
Created July 4, 2012 08:10
Show Gist options
  • Save matthewcopeland/3046027 to your computer and use it in GitHub Desktop.
Save matthewcopeland/3046027 to your computer and use it in GitHub Desktop.
a simple sample of a _base_elements.scss file
// simple sample of base elements
// as this file grows, break out form-elements, buttons, etc.
body {
@include font-sans-serif;
padding: 10px 20px;
font-size: $base-font-size;
}
a {
color: $blackblue;
text-shadow: none;
@include transition( color .2s );
&:hover { color: lighten($darkblue, 10%); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment