95 lines
2.2 KiB
HTML
95 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#222" />
|
|
<meta name="description" content="Click and Join Web" />
|
|
<title>Click and Join Web</title>
|
|
|
|
<style>
|
|
:root {
|
|
--doc--height: 100%;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Outfit-Thin';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 100;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit-ExtraLight';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 200;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit-Light';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 300;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit-Regular';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 400;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit-Medium';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 500;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit-SemiBold';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 600;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit-Bold';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 700;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit-ExtraBold';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 800;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit-Black';
|
|
src: url('/fonts/Outfit.ttf');
|
|
font-weight: 900;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
background-color: #282f34;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#root {
|
|
height: 100vh; /* fallback for Js load */
|
|
height: var(--doc-height);
|
|
|
|
display: flex;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
|
|
<script>
|
|
var exports = {};
|
|
|
|
const documentHeight = () => {
|
|
const doc = document.documentElement;
|
|
doc.style.setProperty('--doc-height', window.innerHeight + 'px');
|
|
};
|
|
window.addEventListener('resize', documentHeight);
|
|
documentHeight();
|
|
</script>
|
|
<script type="module" src="/bundle.web.js"></script>
|
|
</body>
|
|
</html>
|