From 4ff37b1cbaadc6f968953d91075ba53098c7ba45 Mon Sep 17 00:00:00 2001 From: Anton Sarukhanov <code@ant.sr> Date: Tue, 5 May 2020 16:26:19 -0400 Subject: [PATCH] Fix images, add text --- Dockerfile | 6 ++++++ css/monodon.css | 7 +++++-- title.html | 9 +++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 title.html diff --git a/Dockerfile b/Dockerfile index bb839f3..3e30234 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,14 @@ FROM jitsi/web:stable-4548 +# Images COPY images/monnie.png /usr/share/jitsi-meet/images/monnie.png COPY images/monnie-grey.png /usr/share/jitsi-meet/images/monnie-grey.png COPY images/apple-touch-icon.png /usr/share/jitsi-meet/images/apple-touch-icon.png COPY images/favicon.ico /usr/share/jitsi-meet/images/favicon.ico + +# CSS COPY css/monodon.css /tmp/monodon.css RUN cat /tmp/monodon.css >> /usr/share/jitsi-meet/css/all.css + +# Templates/content +COPY title.html /usr/share/jitsi-meet/title.html diff --git a/css/monodon.css b/css/monodon.css index 64536fb..ddbe401 100644 --- a/css/monodon.css +++ b/css/monodon.css @@ -1,9 +1,12 @@ .leftwatermark { - background-image: url(../images/monnie.svg); + background-image: url(../images/monnie.png); } #videospace .leftwatermark { - background-image: url(../images/monnie-grey.svg); + background-image: url(../images/monnie-grey.png); } .welcome { background-image: linear-gradient(-90deg, #222222, #777777 50%, #222222 100%); } +.welcome .header .tab-container { + background: none; +} diff --git a/title.html b/title.html new file mode 100644 index 0000000..d509b8c --- /dev/null +++ b/title.html @@ -0,0 +1,9 @@ +<title>Monodon Meet</title> +<meta property="og:title" content="Monodon Meet"/> +<meta property="og:image" content="images/monnie.png?v=m1"/> +<meta property="og:description" content="Free video conferences powered by Jitsi Meet"/> +<meta description="Free video conferences powered by Jitsi Meet"/> +<meta itemprop="name" content="Monodon Meet"/> +<meta itemprop="description" content="Free video conferences powered by Jitsi Meet"/> +<meta itemprop="image" content="images/monnie.png?v=m1"/> +<link rel="icon" type="image/png" href="images/favicon.ico?v=m1"/> -- GitLab