summaryrefslogtreecommitdiffstats
path: root/dashboard/src/static/css
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/static/css')
-rw-r--r--dashboard/src/static/css/base.css8
-rw-r--r--dashboard/src/static/css/detail_view.css7
2 files changed, 12 insertions, 3 deletions
diff --git a/dashboard/src/static/css/base.css b/dashboard/src/static/css/base.css
new file mode 100644
index 0000000..c51728c
--- /dev/null
+++ b/dashboard/src/static/css/base.css
@@ -0,0 +1,8 @@
+/* Rotating arrows when dropdown happens */
+i.fas.rotate {
+ transition: transform 0.3s ease-in-out;
+}
+
+a[aria-expanded="true"] > i.rotate {
+ transform: rotate(180deg);
+}
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;