-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (54 loc) · 1.41 KB
/
index.html
File metadata and controls
62 lines (54 loc) · 1.41 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mirror Me by Ambassify!</title>
<style>
html, body, video {
width: 100%;
overflow: hidden;
margin: 0;
padding: 0;
background: #293245;
color: white;
font-family: monospace;
}
video {
max-height: calc(100vh - 50px);
display: block;
transform: scaleX(-1);
}
a {
color: #00bd8d;
}
p {
text-align: right;
line-height: 16px;
font-size: 16px;
margin: 17px
}
#video_container {
position: relative;
}
img {
position: absolute;
width: 30%;
top: 10px;
right: 10px;
filter: drop-shadow(5px 5px 15px #ffffff) drop-shadow(-5px -5px 15px #ffffff);
}
</style>
</head>
<body>
<div id="video_container">
<video></video>
<a href="https://www.ambassify.com" target="_blank" rel="noopener">
<img src="./logo.png" alt="Ambassify Logo" />
</a>
</div>
<p>Powered by Ambassify. <a href="https://ambssfy.notion.site/Job-Board-6ec53c03fcd94e318e68d98c08080d38" target="_blank" rel="noopener">
Looking for a job?
</a></p>
<script src="./renderer.js"></script>
</body>
</html>