Skip to content

Instantly share code, notes, and snippets.

@zachharkey
Created April 12, 2013 19:45
Show Gist options
  • Save zachharkey/5374583 to your computer and use it in GitHub Desktop.
Save zachharkey/5374583 to your computer and use it in GitHub Desktop.
A CodePen by Zach Harkey. SASS demo for tom
<article class="teaser">
<h2 class="page-title">
This is the page title
</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</article>
@import "compass";
.page-title {
font-size: 28px;
}
@media all and (min-width:768px) {
.page-title {
font-size: 40px;
}
}
.teaser {
margin: 20px;
padding: 20px;
background-color: rgba(gray,.5);
@include border-radius (15px);
.page-title {
margin-top:0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment