From 5b96679109f0cbcef2b002003388c3ec9cb7469d Mon Sep 17 00:00:00 2001 From: sD Date: Thu, 26 Dec 2019 21:21:41 +0100 Subject: change button css to look like a button --- webAO/client.css | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'webAO/client.css') diff --git a/webAO/client.css b/webAO/client.css index 8b19f1b..84af5d5 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -445,8 +445,18 @@ img { } .client_button { - padding: 1px; + margin: 1px; + padding: 2px 15px; cursor: pointer; + text-align: center; + font-weight: bold; + color: white; + background-color: #7b2900; + border-radius: 3px; + border-style: solid; + border-width: 1px; + border-color: #fffbf1; + box-shadow: 1px inset; } .client_button.hover_button.inactive { @@ -454,18 +464,6 @@ img { } .client_button.hover_button:hover { - margin: -2px; - border-radius: 5px; - border-style: dashed; - border-width: 2px; - border-color: #FFD081; -} - -.client_button.hover_button:hover { - margin: -2px; - border-radius: 5px; - border-style: dashed; - border-width: 2px; border-color: #FFD081; } -- cgit From d00ad88daca6628d4685ccd594f5736e99cd5ab0 Mon Sep 17 00:00:00 2001 From: sD Date: Thu, 26 Dec 2019 22:03:43 +0100 Subject: add a trapzoid-y looking button --- webAO/client.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'webAO/client.css') diff --git a/webAO/client.css b/webAO/client.css index 84af5d5..fdf9ceb 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -459,6 +459,29 @@ img { box-shadow: 1px inset; } +.trapezoid_button { + color: white; + text-align: center; + background: #7b2900; + display: inline-block; + height: 30px; + margin-left: 20px; + margin-top: 55px; + position: relative; + width: 100px; + } + .trapezoid_button:before { + border-bottom: 15px solid #7b2900; + border-left: 50px solid transparent; + border-right: 50px solid transparent; + content: ""; + height: 0; + left: 0; + position: absolute; + top: -15px; + width: 0; + } + .client_button.hover_button.inactive { display: none; } -- cgit From d8624ea73b6ade0e710818faacd0182a4aeb7c9e Mon Sep 17 00:00:00 2001 From: sD Date: Thu, 26 Dec 2019 22:05:39 +0100 Subject: decrease margin --- webAO/client.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'webAO/client.css') diff --git a/webAO/client.css b/webAO/client.css index fdf9ceb..a4a4f09 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -465,8 +465,7 @@ img { background: #7b2900; display: inline-block; height: 30px; - margin-left: 20px; - margin-top: 55px; + margin: 10px 5px; position: relative; width: 100px; } -- cgit From 79943eb4eb3e9534f833b99cfcdf40acf6749c6f Mon Sep 17 00:00:00 2001 From: sD Date: Fri, 27 Dec 2019 17:23:37 +0100 Subject: trapezoidbuttons looked like ass --- webAO/client.css | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'webAO/client.css') diff --git a/webAO/client.css b/webAO/client.css index a4a4f09..84af5d5 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -459,28 +459,6 @@ img { box-shadow: 1px inset; } -.trapezoid_button { - color: white; - text-align: center; - background: #7b2900; - display: inline-block; - height: 30px; - margin: 10px 5px; - position: relative; - width: 100px; - } - .trapezoid_button:before { - border-bottom: 15px solid #7b2900; - border-left: 50px solid transparent; - border-right: 50px solid transparent; - content: ""; - height: 0; - left: 0; - position: absolute; - top: -15px; - width: 0; - } - .client_button.hover_button.inactive { display: none; } -- cgit From af776480621572cf47aebc15de9dac4e37e5a77a Mon Sep 17 00:00:00 2001 From: sD Date: Fri, 27 Dec 2019 18:11:49 +0100 Subject: rename master.css --- webAO/client.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webAO/client.css') diff --git a/webAO/client.css b/webAO/client.css index 84af5d5..a5db488 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -368,7 +368,7 @@ img { } #evi_icon { - background-image: url('misc/empty.png'); + background-image: url("/misc/empty.png"); background-repeat: no-repeat; background-size: contain; } -- cgit From 00dfd4ff2a44ea7dfc7c7bda0e5aa8e6769c0802 Mon Sep 17 00:00:00 2001 From: sD Date: Fri, 27 Dec 2019 19:51:17 +0100 Subject: ebidense --- webAO/client.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'webAO/client.css') diff --git a/webAO/client.css b/webAO/client.css index a5db488..be80855 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -367,10 +367,14 @@ img { height: auto; } -#evi_icon { - background-image: url("/misc/empty.png"); - background-repeat: no-repeat; - background-size: contain; +.evi_icon { + width: 70px; + height: 70px; + background-color: #787878; + outline-color:#886060; + outline-width: 1px; + outline-style: inset; + outline-offset: -1px; } #evi_options { -- cgit