Begin implementation of the site with Svelte

This commit is contained in:
Oliver-Akins 2021-12-15 00:14:12 -06:00
parent 03f37ae403
commit 90819f50e4
14 changed files with 1294 additions and 0 deletions

39
web-svelte/index.html Normal file
View file

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gravwell Online</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');
body {
padding: 0;
margin: 0;
font-family: 'Orbitron', sans-serif;
width: 100vw;
height: 100vh;
/* overflow: hidden; */
background:
radial-gradient(50% 75% at 50% 50%, #000000 35%, rgba(0, 0, 0, 0.171) 125%),
linear-gradient(335deg, #870051 15%, rgba(0, 0, 0, 0) 45%),
linear-gradient(225deg, #008505 15%, rgba(0, 0, 0, 0) 50%),
linear-gradient(170deg, #17A9A9 10%, rgba(0, 0, 0, 0) 50%),
linear-gradient(45deg, #070055 25%, rgba(0, 0, 0, 0) 50%),
black;
}
#app {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>