You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
631 B
37 lines
631 B
7 years ago
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
cursor: default;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
user-select: none;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background: white;
|
||
|
}
|
||
|
|
||
|
#app {
|
||
|
-webkit-app-region: drag;
|
||
|
align-items: center;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
min-height: 100vh;
|
||
|
}
|
||
|
|
||
|
#app video {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<video autoplay loop muted src="./videos/loader.mp4" />
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|