From 1dfb3fec41d986bedb5125bfba99c4828efe9284 Mon Sep 17 00:00:00 2001 From: Mary Kate Date: Tue, 17 Dec 2019 18:21:06 -0600 Subject: [PATCH] Puts dates on top of cards like in mockup, fixes #151 --- .../templates/events/webcast_index_page.html | 35 ++++++++++--------- project_tier/static/css/_webcast.scss | 23 ++++++++++++ 2 files changed, 41 insertions(+), 17 deletions(-) diff --git a/project_tier/events/templates/events/webcast_index_page.html b/project_tier/events/templates/events/webcast_index_page.html index e2fa71c8..50554114 100644 --- a/project_tier/events/templates/events/webcast_index_page.html +++ b/project_tier/events/templates/events/webcast_index_page.html @@ -29,26 +29,27 @@

Agenda

Register Now

-
+ diff --git a/project_tier/static/css/_webcast.scss b/project_tier/static/css/_webcast.scss index 2f8955fc..5c479c65 100644 --- a/project_tier/static/css/_webcast.scss +++ b/project_tier/static/css/_webcast.scss @@ -51,3 +51,26 @@ img.webcast { box-shadow: 0 3px 6px rgba(0,0,0,0.5); } } + +.outer.webcast.card { + overflow: visible; + border: none; + margin-bottom: 50px; +} + +.outer.webcast.card:hover { + border: none; + box-shadow: none; +} + +.inner.webcast.card { + width: 100%; + margin-top: 0; + margin-left: 0; +} + +.webcast.date { + font-family: $header-font-family; + font-weight: bold; + font-size: 20px; +}