From dd187a49b78da9e25df4e4c9a0decd6a4d201a56 Mon Sep 17 00:00:00 2001 From: Samarth Agarwal Date: Thu, 21 Mar 2019 21:04:25 -0400 Subject: Finished front-end side of this feature. --- web/public/stylesheets/style.css | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) (limited to 'web/public/stylesheets/style.css') diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css index ece8da4..85ebb2d 100644 --- a/web/public/stylesheets/style.css +++ b/web/public/stylesheets/style.css @@ -64,20 +64,35 @@ a { overflow-wrap: break-word; word-wrap: break-word; } -#close-btn-container { +#btn-container { height: 30px; top: 250px; background-color: lightgrey; width: 350px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; + text-align: center; } -#close-btn { - background-color: red; +.details-btn { position: relative; margin-top: 4px; - float: right; - margin-right: 20px; border-radius: 10px; - width: 100px; + width: 95px; +} +#pending-btn { + background-color: orange; + float: left; + margin-left: 10px; +} + +#completed-btn { + background-color: #279427; + float: left; + margin-left: 10px; +} + +#close-btn { + background-color: red; + float: right; + margin-right: 10px; } -- cgit v1.2.3 From 8c81bbac1024e6f8c0b378e80da6bb774c56f92a Mon Sep 17 00:00:00 2001 From: Samarth Agarwal Date: Tue, 26 Mar 2019 16:47:29 -0400 Subject: Modified some CSS properties of buttons in point details sidebar. --- web/public/stylesheets/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'web/public/stylesheets/style.css') diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css index 85ebb2d..5f39fcf 100644 --- a/web/public/stylesheets/style.css +++ b/web/public/stylesheets/style.css @@ -76,8 +76,10 @@ a { .details-btn { position: relative; margin-top: 4px; + margin-bottom: 4px; border-radius: 10px; - width: 95px; + font-size: 18px; + padding: 10px; } #pending-btn { background-color: orange; @@ -86,7 +88,7 @@ a { } #completed-btn { - background-color: #279427; + background-color: #2bbd2b; float: left; margin-left: 10px; } -- cgit v1.2.3