diff options
| author | Alee <Alee14498@gmail.com> | 2019-01-26 23:58:58 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-01-26 23:58:58 -0500 |
| commit | 8defcf40d08c155dc78d19a032690ce6acddb090 (patch) | |
| tree | b74b7ca1f8a03dcf3391a0a55777b74484ed16a4 | |
| parent | 68b967306680b6a888964b550fc437415e78c38e (diff) | |
| download | personal-website-8defcf40d08c155dc78d19a032690ce6acddb090.tar.gz personal-website-8defcf40d08c155dc78d19a032690ce6acddb090.tar.bz2 personal-website-8defcf40d08c155dc78d19a032690ce6acddb090.zip | |
Added little things
| -rw-r--r-- | _includes/footer.html | 4 | ||||
| -rw-r--r-- | _includes/navigator.html | 2 | ||||
| -rw-r--r-- | style.css | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/_includes/footer.html b/_includes/footer.html index 39bdb2a..a6521a8 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,4 +1,4 @@ <div class="footer"> - <p><b>© Copyright 2019, Andrew Lee.</b></p> - <p><b>Powered by GitHub Pages.</b></p> + <p><b>© Copyright 2018-2019, Andrew Lee.</b></p> + <p><b><a class="footer-a" href="https://pages.github.com/">Powered by GitHub Pages.</a></b></p> </div>
\ No newline at end of file diff --git a/_includes/navigator.html b/_includes/navigator.html index 00a24fd..b743142 100644 --- a/_includes/navigator.html +++ b/_includes/navigator.html @@ -1,6 +1,6 @@ <div id="navigation"> <ul class="navbar"> - <li class="nav logo">Andrew Lee</li> + <li class="nav logo"><a class="nav" href="/">Andrew Lee</a></li> <li class="nav" {% if page.url == "/" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/">HOME</a></li> <li class="nav" {% if page.url == "/projects.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/projects">PROJECTS</a></li> <li class="nav" {% if page.url == "/blog.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/blog">BLOG</a></li> @@ -108,6 +108,10 @@ li.nav { text-decoration: none; } +.footer-a { + text-decoration: none; +} + a.nav { color: white; text-decoration: none; |
