From cd794243a5bba358d995e26ba024268e7d5d3f85 Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Fri, 26 Jul 2024 19:50:14 +0530 Subject: Add Discord Activity functionality (mostly) + general improvements --- priv/room.html.eex | 43 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 40 insertions(+), 3 deletions(-) (limited to 'priv/room.html.eex') diff --git a/priv/room.html.eex b/priv/room.html.eex index fd86768..9f2ed0f 100644 --- a/priv/room.html.eex +++ b/priv/room.html.eex @@ -4,6 +4,7 @@ + room | mediasync @@ -11,17 +12,53 @@ body { margin: 0; } + + @font-face { + font-family: "FontAwesomeSolid"; + src: url("/static/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.woff2") format("woff2"); + } + + .icon-home, .icon-users { + font-family: "FontAwesomeSolid"; + } + + .icon-home::before { + content: "\f015"; + } + + .icon-users::before { + content: "\f0c0" + } + + #state-button-active::after { + content: attr(data-text); + white-space: pre-wrap; + font-family: monospace; + text-align: left; + text-shadow: black 1px 1px; + position: fixed; + left: 0; + top: 0; + }
- +
- + + + - \ No newline at end of file + -- cgit v1.2.3-57-g22cb