-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (68 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta property="og:title" content="NetCanv">
<meta property="og:description" content="Online collaborative paint canvas">
<title>NetCanv</title>
<style>
body {
font-family: sans-serif;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
}
html, body {
margin: 0;
height: 100%;
}
pre {
padding-left: 2em;
}
h1 {
text-align: center;
font-size: 48px;
}
.relay-address {
font-size: 24px;
}
p {
padding-top: 0.2em;
}
.sep {
padding-top: 2em;
}
@media (prefers-color-scheme: dark) {
html {
background-color: #222222;
color: #eeeeee;
}
a {
color: #85f7ff;
}
}
.wrapper {
padding-bottom: 5%;
}
</style>
</head>
<body>
<div class="wrapper">
<h1>NetCanv</h1>
<p>
NetCanv is a collaborative painting app for desktop PCs.
</p>
<p>
Download the latest version <a href="https://github.com/liquidev/netcanv/releases/latest">here</a>!
</p>
<p class="sep">
This website hosts the official NetCanv Relay server. To connect to this relay, type the address:
</p>
<pre class="relay-address">netcanv.org</pre>
<p>
into the "Relay server" textfield after you open the app. Then, have fun painting!
</p>
</div>
</body>
</html>