Created
December 20, 2012 09:43
-
-
Save ynonp/4344208 to your computer and use it in GitHub Desktop.
Untitled
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
nav ul { list-style: none; padding-left: 0;} | |
nav li { display: inline-block; } | |
nav a { | |
padding: 10px; | |
background: #a7a7a7; | |
display: inline-block; | |
text-decoration: none; | |
margin-right: 10px; | |
color: white; | |
border-radius: 12px; | |
} | |
nav a:hover { | |
background: orange; | |
} | |
article p:nth-child(1) { | |
background: red; | |
} | |
article ul li:nth-child(2) { | |
background: green; | |
} | |
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> | |
<nav> | |
<ul> | |
<li><a href="#">Home</a></li> | |
<li><a href="#">About</a></li> | |
<li><a href="#">Schedule</a></li> | |
</ul> | |
</nav> | |
<div id="page-main"> | |
<article> | |
<p>Pellentesque habitant mor.</p> | |
<ul> | |
<li>Lorem ipsum .</li> | |
<li>Aliquam tin.</li> | |
<li>Vestibulum .</li> | |
</ul> | |
<p>Pellentesque habitant mor.</p> | |
</article> | |
</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
// alert('Hello world!'); |
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
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment