Fix deploy script, polish css

This commit is contained in:
Salt 2020-10-18 23:19:58 -05:00
parent 6e9f9954a3
commit 582428ef72
2 changed files with 12 additions and 2 deletions

View File

@ -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

View File

@ -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);