From 8c16dc1f7cca7e37c139d40f7fd58641a3cf2b23 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Wed, 23 Oct 2024 11:55:07 -0700 Subject: [PATCH] Initial commit of swing trading dashboard style sheet --- assets/dashboard.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 assets/dashboard.css diff --git a/assets/dashboard.css b/assets/dashboard.css new file mode 100644 index 0000000..e564b02 --- /dev/null +++ b/assets/dashboard.css @@ -0,0 +1,27 @@ +.ag-header-cell-label { + justify-content: center; +} + +.long-signal { + height: 15px; + width: 15px; + background-color: #32cd32; + border-radius: 50%; + display: inline-block; + vertical-align: middle; + margin: 2px; +} + +.no-signal { + height: 15px; + width: 15px; + background-color: #6d6d6d; + border-radius: 50%; + display: inline-block; + vertical-align: middle; + margin: 2px; +} + +.signal-container { + text-align: center; +} \ No newline at end of file