Last active
April 27, 2016 14:15
-
-
Save jdgarrido/f7c77d63588d52908fa2b3e268fb04b9 to your computer and use it in GitHub Desktop.
SCSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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