From 1cf6847d184c457770b040b3206b2c90e527283a Mon Sep 17 00:00:00 2001 From: Tocho Tochev Date: Wed, 11 Aug 2021 16:57:10 +0300 Subject: [PATCH] Add green screen support --- index.html | 6 ++++++ schedule.js | 1 - styles.css | 2 ++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 6c0b8fd..dc73dcd 100644 --- a/index.html +++ b/index.html @@ -132,5 +132,11 @@ + diff --git a/schedule.js b/schedule.js index 23e2a3c..d14dd26 100644 --- a/schedule.js +++ b/schedule.js @@ -19,7 +19,6 @@ function Schedule(hallId, date, setPageTitle) { $.getJSON(apiEndpointPrefix + '/events.json', function(eventsData) { $.getJSON(apiEndpointPrefix + '/slots.json', function(slotsData) { $.each(slotsData, function(slotId, slot) { - console.info(slot); $.extend(eventsData[slot['event_id'].toString()], slot); $.extend(eventsData[slot['event_id'].toString()], {"slotId": slotId}); }); diff --git a/styles.css b/styles.css index e822008..853a0ac 100644 --- a/styles.css +++ b/styles.css @@ -14,6 +14,8 @@ body, .reveal h5, .reveal h6 { font-family: "Roboto Condensed", tahoma, verdana, arial, sans-serif; + font-weight: bold; + -webkit-text-stroke: 0.01em black; } #background_video {