diff --git a/run.js b/run.js index 880d05f..47c255a 100644 --- a/run.js +++ b/run.js @@ -24,7 +24,7 @@ if (fs.existsSync("data")) { } const requestListener = function (req, res) { - log(req.url) + if (req.url!=="/favicon.ico") log(req.url) if (req.url === "/test"){ fs.readFile("templates/rick.html", function (err,data) { if (err) { diff --git a/static/style.css b/static/style.css index dc782b7..6fa859a 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,14 @@ nav { - -} \ No newline at end of file + position: fixed; + top: 0%; + height: 10%; + width: 100%; + text-align: center; + vertical-align: top; + }; +.eviloctopus { + height: 10%; + text-align:left; + position: fixed; + top: 0%; +}; \ No newline at end of file diff --git a/templates/start.html b/templates/start.html index 0c49bff..0b7d385 100644 --- a/templates/start.html +++ b/templates/start.html @@ -1,17 +1,32 @@