From ee5f0b655c1ca0dd0af7efa0624fbf82af3c9ea8 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 5 Nov 2018 19:34:32 +0100 Subject: [PATCH 1/2] Use devDependencies for forever Signed-off-by: Thomas Citharel --- forever.sh | 2 +- package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/forever.sh b/forever.sh index f4181bd..51fafed 100755 --- a/forever.sh +++ b/forever.sh @@ -1 +1 @@ -forever start -o out.log -e err.log server.js 80 \ No newline at end of file +./node_modules/.bin/forever start -o out.log -e err.log server.js 80 diff --git a/package.json b/package.json index 0cfd57e..eadc78b 100644 --- a/package.json +++ b/package.json @@ -23,5 +23,8 @@ "simplesets": "~1.2.0", "socket.io": "1.x", "yargs": "~2.3.0" + }, + "devDependencies": { + "forever": "^0.15.3" } } From 6d98617bd9a7225a672c747bf68512dafc62077e Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 5 Nov 2018 19:36:03 +0100 Subject: [PATCH 2/2] Make the go button a real button Signed-off-by: Thomas Citharel --- client/css/style.css | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/client/css/style.css b/client/css/style.css index 28e0a53..082bcc4 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -497,19 +497,31 @@ input:hover { xbackground: none; } +#go:hover { + box-shadow: 5px 5px 2px 1px rgba(0, 0, 255, .2); +} + #go { - background: none; - margin-bottom: 10px; - border: none; + display: inline-block; + background-color: #76cfbc; + margin-left: 30px; + padding: 0 10px 5px 0; + border-radius: 10px; + margin-bottom: 10px; + box-shadow: unset; + border: none; font-size: 40px; font-family: 'Covered By Your Grace',"Arial Rounded MT Bold", arial, serif; color: #19ba98; color: black; xborder: solid 1px; +} - - +@media (max-width: 442px) { + #go { + margin-left: 0; + } } .notice-bar {