-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
139 lines (115 loc) · 3.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<!--
hi friends!
just a little edit to restructure the cathode homepage as a
temporary fix for the current issue (mar 2022) of the chat
showing up beneath the video player.
xoxo://effie.vision/
-->
<!--
hello there,
for the time being, add real embedded URLs to the iframe sources for video and chat
-->
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="shortcut icon" type="image/x-icon" href="assets/favicon.ico"/> -->
<title>DIY Film Festival</title>
</head>
<body>
<style media="screen">
* {
box-sizing: border-box;
}
body,
html {
padding: 0;
margin: 0;
background-color: #000;
font-family: sans-serif;
color: #fff;
}
#topBar {
display: flex;
height: 69px;
margin: 20px;
justify-content: center;
align-items: center;
}
#logoContainer, #mainLogoLink>img {
height: 100%;
}
#scheduleContainer {
position: absolute;
right: 20px;
}
#scheduleButton,
#scheduleButton:visited {
text-decoration: none;
background-color: #000;
color: #fff;
padding: .88em 1.4696em;
border: 3px solid #fff;
transition: all 0.25s;
}
#scheduleButton:hover,
#scheduleButton:visited:hover {
background-color: #fff;
color: #000;
}
#vidChatContainer {
display: flex;
height: 100vh !important;
}
#videoContainer {
flex-grow: 1;
}
#videoContainer>iframe {
width: 100%;
height: 100%;
border: 0;
}
#chatContainer>iframe {
width: 300px;
height: 100%;
border: none;
}
#bottomText {
margin: 20px;
font-size: 10px;
text-align: center;
}
</style>
<div id="topBar">
<div id="logoContainer">
<a id="mainLogoLink" href="/" data-animation-role="header-element">
DIY Film Festival
</a>
</div>
<div id="scheduleContainer">
<a id="scheduleButton" href="#" target="_blank">SCHEDULE</a>
</div>
</div>
<div id="vidChatContainer">
<div id="videoContainer">
<!-- VIDEO STREAMING -->
<iframe src="https://ok.ru/videoembed/" allow="autoplay" allowfullscreen="" frameborder="0" allow="encrypted-media;"></iframe>
<!-- restream has a premium embed feature at $100 a month with URL syntax like
<iframe src="https://player.restream.io?token=2123471e69ed8bf8cb11cd207c282b1" width="560" height="315" allow="fullscreen" frameborder="0"></iframe>
-->
</div>
<!-- GROUPCHAT -->
<div id="chatContainer" class='embed-container'>
<iframe src='https://minnit.chat/' allowTransparency='true'></iframe>
</div>
</div>
<p id="bottomText">
DIY FILM FESTIVAL IS AN ARCHIVAL SCREENING ENTITY EXISTING FOR EDUCATIONAL PURPOSES ONLY.
<br>
VISIT OUR <a href="https://linktr.ee/" style="color: #da0960" target="_blank"> TREE OF LINKS </a> FOR MORE DIY FILM FESTIVAL.
</p>
</body>
</html>
<!-- (groove)(dance)(groove) -->