feat: add header links Signed-off-by: Anirudh <icyph0x@pm.me>
Anirudh icyph0x@pm.me
Wed, 05 Sep 2018 15:47:21 +0530
2 files changed,
24 insertions(+),
2 deletions(-)
M
index.html
→
index.html
@@ -21,12 +21,14 @@ <title>
Anirudh Oppiliappan </title> +<div class="container"> <header> - + <div class="right header"> + <a href="/" target="_blank">home</a> <a href="/blog" target="_blank">blog</a> <a href="/about" target="_blank">about</a> + </div> </header> <body> - <div class="container"> <div class="introduction"> <h1 align="center"> <img src="/static/icynobg.svg" class="logo">
M
static/style.css
→
static/style.css
@@ -104,6 +104,26 @@ .footer a:hover {
color: white; } +.header { + color: #666; + top: 20px; + font-size: 14px; + position: absolute; + width: 100%; + text-align: center; + margin-top: 20px; +} + +.header a { + color: #666; + margin: 0; + transition: all 200ms; +} + +.header a:hover { + color: white; +} + .left { display: inline-block; margin-bottom: 30px;