sites

parazyd.cf website
git clone git://parazyd.org/sites.git
Log | Files | Refs

commit a626828b3ce08324495d568c0521eb7eb7e84140
parent 17fc8a257774f283e7150863b9c1f7280699a32c
Author: parazyd <parazyd@dyne.org>
Date:   Wed, 15 Feb 2017 15:23:10 +0100

color on logo hover

Diffstat:
Mmars | 7+------
Mstatic/style.css | 5+++++
2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/mars b/mars @@ -4,15 +4,10 @@ . ./webtree -die() { - printf "error\n" - exit 1 -} - process() { for dir in $tree; do printf "\t-- /$dir --\n" - cd $dir || die + cd $dir || exit 1 for page in *.md; do if [ $(printf "%s" "$exclude" | grep "$page") ]; then diff --git a/static/style.css b/static/style.css @@ -69,6 +69,11 @@ code { padding: 0.7ex 0.7ex 0.7ex 0.7em; } +#header a:hover { + background-color: #eed; + color: #17a; +} + #header img { width: 30px; }