Adding some nav items

This commit is contained in:
Jeff Avallone 2014-12-16 11:05:13 -05:00
parent 22ade8846d
commit 8651fd0d9b
5 changed files with 17 additions and 8 deletions

1
src/changelog.html Normal file
View File

@ -0,0 +1 @@
TODO: Write a changelog

1
src/documentation.html Normal file
View File

@ -0,0 +1 @@
TODO: Write documentation

View File

@ -102,3 +102,5 @@
</svg> </svg>
</div> </div>
</div> </div>
<script src="/js/main.js" async defer></script>

View File

@ -72,16 +72,23 @@ header {
overflow: hidden; overflow: hidden;
ul { ul {
@include inline-block-list;
display: inline-block; display: inline-block;
li {
@include border-radius(rhythm(1/2));
background-color: $green;
margin: 0 0 rhythm(1/4) rhythm(1);
padding: 0 rhythm(1/4);
}
} }
a { a {
@include adjust-font-size-to($base-font-size, 2); @include adjust-font-size-to($base-font-size, 1);
@include unstyled-link; @include unstyled-link;
} }
.source { .source {
@include adjust-font-size-to($base-font-size, 2);
float: right; float: right;
img { img {

View File

@ -23,10 +23,10 @@
</div> </div>
<nav> <nav>
<!--<ul> <ul>
<li><a href="#">Example</a></li> <li><a href="/changelog.html">Changelog</a></li>
<li><a href="#">Example</a></li> <li><a href="/documentation.html">Documentation</a></li>
</ul>--> </ul>
<a class="source" href="https://github.com/javallone/regexper"> <a class="source" href="https://github.com/javallone/regexper">
<img src="/images/GitHub-Mark-32px.png" />Source on GitHub <img src="/images/GitHub-Mark-32px.png" />Source on GitHub
</a> </a>
@ -46,7 +46,5 @@
</li> </li>
</ul> </ul>
</footer> </footer>
<script src="/js/main.js"></script>
</body> </body>
</html> </html>