From 237af5645d924e9105c9b0d21ceb95d14c7207c3 Mon Sep 17 00:00:00 2001 From: Abdallah Soliman Date: Tue, 12 Jul 2016 20:33:05 -0500 Subject: [PATCH] added box shadows because it looks nicer --- static/css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index f195a5d..33e155f 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -133,6 +133,9 @@ main { margin: 0; width: 100%; height: 100%; + -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.34); + -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.34); + box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.34); } .box-art:hover { cursor: pointer; @@ -152,6 +155,9 @@ main { width: 150px !important; height: 150px !important; background-color: #000; + -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.34); + -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.34); + box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.34); } .host-cell:hover { cursor: pointer;