diff --git a/deploy.sh b/deploy.sh index 3857c5d..61e15d2 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,3 +1,3 @@ #! /bin/sh -ssh -t salt@thefuck.how sudo git -C /var/www/www pull +ssh -t salt@thefuck.how sudo git -C /var/www/thefuck.how pull diff --git a/styles/styles.css b/styles/styles.css index 70a1fe1..efc205e 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -8,7 +8,17 @@ :root { --background: #808; --text: #0ff; - --text-code: #ff0; + --text-code: #fff; + --link: #ff0; + --link-hover: #880; +} +a { + color: var(--link); + text-decoration: none; + transition: .08s ease-in; +} +a:hover { + color: var(--link-hover); } body { background: var(--background);