-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<title>Semintra Video</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" href="favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicon/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="favicon/manifest.json">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#40c4dd">
<link rel="shortcut icon" href="favicon/favicon.ico">
<meta name="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<meta name="msapplication-config" content="favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<style>
*{
box-sizing: border-box;
}
.videoWrapper {
position: relative;
padding-bottom: 54.3%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.video{
max-width: 1280px;
padding: 0 25px;
margin: 10vh auto 0;
}
body{
background-color: #73CFDD;
}
.logo{
position: fixed;
pointer-events: none;
left: 0;
top: 0;
z-index: 999;
}
.logo img{
max-width: 450px;
}
</style>
</head>
<body>
<div class="logo">
<img src="imgs/logo_semintra.png" alt="Semintra" />
</div>
<div class="video">
<div class="videoWrapper">
<iframe src="https://player.vimeo.com/video/200170795?color=4CD1DE&title=0&byline=0&portrait=0" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</body>
</html>