Skip to content

Commit

Permalink
Add landing page.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Aug 19, 2023
1 parent e012acb commit a0a5301
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<link rel="icon" href="data:,">
<meta http-equiv="refresh" content="0;url=examples">
<title>bevy_trackball</title>
<style>
html {
height: 100%;
overflow-y: scroll;
}
body {
margin: 0;
padding: 0 2%;
display: flex;
flex-direction: column;
min-height: 100%;
color: #ececec;
background-color: #232326;
font-size: 14pt;
font-family: Monospace;
}
body > *, main > * {
margin: 0 auto;
}
a {
text-decoration: none;
color: #7c90ff;
}
nav, footer {
text-align: center;
margin: 3em 0;
}
main {
flex: 1;
}
</style>
</head>
<body>
<nav></nav>
<main>
If you are not redirected automatically, follow the link to the <a href="examples">examples</a>.
</main>
<footer></footer>
</body>
</html>

0 comments on commit a0a5301

Please sign in to comment.