Skip to content

Instantly share code, notes, and snippets.

@jdgarrido
Last active April 27, 2016 14:15
Show Gist options
  • Save jdgarrido/f7c77d63588d52908fa2b3e268fb04b9 to your computer and use it in GitHub Desktop.
Save jdgarrido/f7c77d63588d52908fa2b3e268fb04b9 to your computer and use it in GitHub Desktop.
SCSS
<body>
<div id="head">
<h1>titulo h1</h1>
</div>
<div id="body">
<div>
<h2>titulo h2</h2>
</div>
<div>
<h2>titulo h2</h2>
<p>Sed condimentum nec felis ac venenatis. In aliquam faucibus purus. Nam leo mi, faucibus eu est ac, lacinia faucibus nisi.</p>
</div>
</div>
<div id="footer">
<ul>
<li><a href="#">link</a></li>
</ul>
</div>
</body>
body {
font-family: 'comic-sans';
}
h2 {
font-family: helvetica;
}
p {
font-size: 24px;
}
#body {
div:nth-child(1) {
h2 { font-family: 'Lato';}
p { font-size: 12px;}
}
div:nth-child(2) {
h2 {
font-family: 'courier-new';
}
p {
font-size: 14px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment