diff options
author | 2018-12-04 15:30:42 -0500 | |
---|---|---|
committer | 2018-12-14 15:52:04 -0500 | |
commit | 74923100444ad669f63293466880ac59b05f5585 (patch) | |
tree | 83ac6a76c9999367d749d555c168d0cd93596854 /dashboard/src/static | |
parent | 9ae6c5c1cef2c5488b5c7c7700c886f8ebfe9d00 (diff) |
Abstract Out Inline CSS for Account Views
Change-Id: I2da02fa7865b618c583d15cca9ef256c62f19286
Signed-off-by: Sawyer Bergeron <sawyerbergeron@gmail.com>
Diffstat (limited to 'dashboard/src/static')
-rw-r--r-- | dashboard/src/static/css/detail_view.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dashboard/src/static/css/detail_view.css b/dashboard/src/static/css/detail_view.css new file mode 100644 index 0000000..b0e271d --- /dev/null +++ b/dashboard/src/static/css/detail_view.css @@ -0,0 +1,13 @@ +.detail_card { + border: 2px; + border-color: black; + border-radius: 5px; + margin: 5px; + box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75); +} + +.detail_btn_group { + margin: 3px; + padding: 3px; + padding-bottom: 5px; +} |