summaryrefslogtreecommitdiffstats
path: root/dashboard/src/static/css/detail_view.css
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2019-05-22 17:05:38 -0400
committerSawyer Bergeron <sbergeron@iol.unh.edu>2019-05-22 17:14:58 -0400
commitb71d94e6d69899fb9e52d44cedc4479e9947967b (patch)
tree403cb69dd60473950c17bd2ab2dd6c9e2b06e17d /dashboard/src/static/css/detail_view.css
parent36ecf863b7ef6dd41d7b61b81c18e21c45cec15c (diff)
Reduce shadow severity
Shadows were somewhat overdone in some areas of the ui, they are now less so Change-Id: Ida04a5580be8493f37ade2554983149d05d91bcc Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Diffstat (limited to 'dashboard/src/static/css/detail_view.css')
-rw-r--r--dashboard/src/static/css/detail_view.css7
1 files changed, 4 insertions, 3 deletions
diff --git a/dashboard/src/static/css/detail_view.css b/dashboard/src/static/css/detail_view.css
index 7948d85..c3d0a4d 100644
--- a/dashboard/src/static/css/detail_view.css
+++ b/dashboard/src/static/css/detail_view.css
@@ -24,14 +24,15 @@
}
.detail_card {
- border: 2px;
- border-color: black;
border-radius: 5px;
+ border-top: 1px solid #ccc;
+ border-left: 1px solid #ccc;
+ border-right: 1px solid #ccc;
+ border-bottom: 1px solid #ccc;
margin: 5px;
padding-left: 25px;
padding-right: 25px;
padding-bottom: 15px;
- box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
display: flex;
flex-direction: column;
justify-content: space-between;