forked from matthijsvdmeulen/atem-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.13 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
<!DOCTYPE html>
<html>
<title>ATEM Remote</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1 {font-family: "Raleway", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('https://www.redsharknews.com/hubfs/ATEM_Mini%20Pro%20ISO-jpg.jpeg');
min-height: 100%;
background-position: center;
background-size: cover;
}
.w3-display-middle {
background-color: rgba(0, 0, 0, 0.877);
padding-left: 2em;
padding-right: 2em;
border-radius: 5px;
}
</style>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-middle">
<h1 class="w3-jumbo w3-animate-top">ATEM Remote</h1>
<hr class="w3-border-grey" style="margin:auto;width:40%">
<p class="w3-large w3-center">Control your ATEM switcher using an X-Touch Mini</p>
<p class="w3-large w3-center"><a href="atem-remote.exe">Download</a></p>
</div>
</div>
</body>
</html>