all repos — site @ 4a2e8a86e3bfa914972e486c4889e8488b6775fe

source for my site, found at icyphox.sh

feat: add header links

Signed-off-by: Anirudh <icyph0x@pm.me>
Anirudh icyph0x@pm.me
Wed, 05 Sep 2018 15:47:21 +0530
commit

4a2e8a86e3bfa914972e486c4889e8488b6775fe

parent

c39477c0394ce074b9b7be2d973bd557b92a1bff

2 files changed, 24 insertions(+), 2 deletions(-)

jump to
M index.htmlindex.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.cssstatic/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;