all repos — site @ 7e705dbc5b0af7301779dbf04cf055c81eeac2f0

source for my site, found at icyphox.sh

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
commit

7e705dbc5b0af7301779dbf04cf055c81eeac2f0

parent

53e741f2cf3330a6f5c0e2a6fc92fddc4b7fe4bf

2 files changed, 10 insertions(+), 6 deletions(-)

jump to
M about/index.htmlabout/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.cssstatic/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 {