-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (80 loc) · 2.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Bastion</title>
<meta
name="description"
content="A human-curated information repository"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<link rel="icon" type="image/x-icon" href="src/favicon.ico" />
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
overflow-y: scroll;
}
.app {
flex-grow: 1;
padding: 16px;
background: linear-gradient(to bottom, #7496b7 60%, #9b98a8);
background-attachment: fixed;
font-family: "Trebuchet MS", "Verdana", sans-serif;
font-size: 15px;
}
.page {
background: #fffefd;
margin: 0 auto;
max-width: 900px;
border-radius: 8px;
border: 4px solid #fff;
box-shadow: 0 1px 8px #0008;
}
.header {
background: url("/src/assets/landscape.jpg"),
linear-gradient(100deg, #7496b7, #9b98a8);
background-size: cover;
background-position: center;
height: 100px;
width: 100%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding: 30px 20px;
color: #fff;
text-shadow: 0 0 3px #000, 0 0 10px #0008;
}
</style>
</head>
<body>
<code><pre id="test-results"></pre></code>
<div class="app">
<div class="page">
<div class="header">
<h1>Bastion</h1>
</div>
<div id="preact-root"></div>
<script
defer
src="https://cdn.jsdelivr.net/npm/[email protected]"
></script>
<div
style="margin-inline: auto; margin-block: 2em"
data-wwwebring="https://waywardweb.org/ring.json"
data-wwwebring-you-are-here="https://bastionhome.github.io"
data-wwwebring-theme="default"
></div>
</div>
</div>
<script type="module" src="src/index.tsx"></script>
</body>
</html>