-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
102 lines (100 loc) · 3.3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html lang="en">
<head>
<title>Realness – A Chill Vector Space</title>
<link rel="dns-prefetch" href="https://firebasestorage.googleapis.com" />
<link rel="dns-prefetch" href="https://www.google.com" />
<link rel="dns-prefetch" href="https://apis.google.com" />
<link rel="dns-prefetch" href="https://www.gstatic.com" />
<link rel="dns-prefetch" href="https://storage.googleapis.com" />
<link href="/icons.svg" as="image" type="image/svg+xml" />
<link
rel="preload"
href="/fonts/Lato-Light-Subset.woff2"
as="font"
crossorigin="anonymous"
type="font/woff2" />
<link
rel="preload"
href="/fonts/Lato-Regular-Subset.woff2"
as="font"
crossorigin="anonymous"
type="font/woff2" />
<link
rel="preload"
href="/fonts/Lato-Heavy-Subset.woff2"
as="font"
crossorigin="anonymous"
type="font/woff2" />
<meta charset="utf-8" />
<meta
name="description"
content="A chill vector space. When people search for 'outsider social network' they'll find realness online" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=5, viewport-fit=cover" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:url" content="https://realness.online" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="/icons.svg" />
<meta
property="og:title"
content="A chill vector space - realness.online" />
<link rel="apple-touch-icon" href="/180.png" sizes="180x180" />
<meta name="theme-color" content="#151518" />
<link rel="mask-icon" href="/icons.svg" color="#151519" />
<link type="image/svg+xml" rel="icon" href="/icons.svg" />
<script type="module" src="/src/main.js"></script>
</head>
<body>
<noscript>
<h3>Realness doesn't work.</h3>
<p>Please enable javascript to continue.</p>
</noscript>
<style media="screen">
@media (prefers-color-scheme: dark) {
html {
background-color: rgb(23, 24, 28);
color: rgba(186, 185, 166, 0.9);
}
}
</style>
<svg
class="working"
style="
width: 9rem;
height: 4rem;
display: block;
margin: auto;
margin-top: 12rem;
"
fill-opacity="0.73"
fill="#EC364C">
<rect x="1em" y="1.05em" width="2em" height="2em" rx="1em"></rect>
<rect x="3.5em" y="1.05em" width="2em" height="2em" rx="1em"></rect>
<rect x="6em" y="1.05em" width="2em" height="2em" rx="1em"></rect>
</svg>
</body>
<script>
if (/(iPad|iPhone|iPod)/g.test(navigator.userAgent)) {
window.addEventListener(
'orientationchange',
() => {
const viewport = document.querySelector('meta[name=viewport]')
if (viewport) {
const content = viewport.getAttribute('content')
viewport.setAttribute('content', content + ', maximum-scale=1.0')
setTimeout(_ => {
viewport.setAttribute('content', content)
}, 90)
}
},
false
)
}
</script>
</html>