refactor(css): recolor header and footer links on-hover Signed-off-by: Anirudh <icyph0x@pm.me>
Anirudh icyph0x@pm.me
Sun, 09 Sep 2018 10:42:58 +0530
2 files changed,
10 insertions(+),
6 deletions(-)
M
about/index.html
→
about/index.html
@@ -62,6 +62,10 @@ </ul>
<p>You might want to check out my <a href="https://last.fm/user/icyphox">Last.fm</a>.</p> +<h2>This website</h2> + +<p>You can find its source <a href="https://github.com/icyphox/site">here</a>, and the static site generator that powers it - <a href="https://github.com/icyphox/vite">Vite</a>. </p> + <h2>Contact</h2> <p>I read all my mail (not that I get a lot of relevant stuff), so feel free to shoot one at <a href="mailto:icyph0x@pm.me">icyph0x@pm.me</a>. You can also find me at <code>#rice</code> at <a href="https://rizon.net">Rizon</a>, as <code>icy</code> or <code>icyphox</code>.</p>
M
static/style.css
→
static/style.css
@@ -86,7 +86,7 @@ width: 250px;
} .footer { - color: #666; + color: white; bottom: 20px; font-size: 14px; position: absolute;@@ -96,17 +96,17 @@ margin-bottom: 20px;
} .footer a { - color: #666; + color: white; margin: 0; transition: all 200ms; } .footer a:hover { - color: white; + color: cyan; } .header { - color: #666; + color: white; top: 20px; font-size: 14px; position: absolute;@@ -116,13 +116,13 @@ margin-top: 20px;
} .header a { - color: #666; + color: white; margin: 0; transition: all 200ms; } .header a:hover { - color: white; + color: cyan; } .left {