-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (112 loc) · 3.95 KB
/
Copy pathindex.html
File metadata and controls
122 lines (112 loc) · 3.95 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!doctype html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="/assets/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/assets/favicon/favicon.svg" />
<link rel="shortcut icon" href="/assets/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png" />
<link rel="manifest" href="/assets/favicon/site.webmanifest" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta property="og:title" content="Anywhere Connection Corporation" />
<meta property="og:image" content="https://accorp.net/assets/icon.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://accorp.net" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
<title>Anywhere Connection Corporation</title>
<style>
:root {
--bg1: #d2c7ed;
--bg2: #9d98bc;
--accent: #4d1796;
--accent-text: #291b3a;
--dark: #373247;
--dark-transparent: color-mix(in srgb, var(--dark), 50% transparent);
}
html {
height: 100%;
font-size: 1.1rem;
background-image: linear-gradient(135deg, var(--bg1), var(--bg2));
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
font-family: "Atkinson Hyperlegible Next", monospace;
color: var(--dark);
}
main {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
footer {
margin-top: auto;
padding: 20px;
font-size: 0.8em;
text-align: center;
}
hr {
border: 0;
background: var(--accent);
overflow: visible;
text-align: center;
width: max(400px, min(50%, 600px));
height: 1px
}
p {
color: var(--accent-text)
}
h1 {
font-style: italic;
font-size: 28px;
font-weight: 300;
margin: 0;
letter-spacing: 4px;
filter: drop-shadow(1px -1px 0px var(--dark-transparent)) drop-shadow(-1px 1px 0px var(--dark-transparent));
}
.links {
display: flex;
margin-top: 10px;
word-spacing: 0px;
& :not(:last-child)::after {
pointer-events: none;
padding: 0 4px;
content: "|";
color: var(--dark-transparent);
display: inline-block;
text-decoration: none;
}
}
</style>
<script>
</script>
</head>
<body>
<main role="main">
<div class="logo">
<img src="assets/wordmark.svg" alt="Anywhere Connection Corporation Logo" height="128"/>
</div>
<hr />
<p>Building the future of roleplay.</p>
<div class="links" id="links">
<a href="https://github.com/anywhereco">github</a>
<a href="https://heredita.net">heredita</a>
<a href="https://minutes.accorp.net">meetings</a>
</div>
</main>
<footer>
<div>webmaster contact: webmaster [at] accorp [dot] net</div>
<div>© Anywhere Connection Corporation 2026</div>
</footer>
</body>
</html>