forked from aya/aya
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ChromiumFrame Initialized</title>
|
|
<style>
|
|
@font-face {
|
|
font-family: "Source Sans Pro";
|
|
font-style: normal;
|
|
font-weight: 200 900;
|
|
src: url("./fonts/SourceSansPro-Regular.ttf") format("ttf");
|
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: #111;
|
|
color: #fff;
|
|
font-family: "Source Sans Pro", sans-serif;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<p><img src="./textures/Aya.png" width="150" /></p>
|
|
<h1>ChromiumFrame Initialized</h1>
|
|
<p>Reference the Lua API for instructions on how to use ChromiumFrames.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|