Initial Commit

This commit is contained in:
Arya K 2022-05-06 13:30:20 +05:30
commit 343f1f2842
8 changed files with 116 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
"m.server": "mtrx.vern.cc:443"
}

0
admins.html Normal file
View File

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

38
index.html Normal file
View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Vern</title>
</head>
<body>
<!--#include file="nav" -->
<h1>Welcome to ~vern!</h1>
<p>VERN.CC is a non-commercial shared GNU/Linux system (pubnix) which is free to use for the public. We are also aiming to become a member of the <a href=https://tildeverse.org>Tildeverse</a> after we meet the requirements</p>
<h2>Services</h2>
<p>We host many services, most are available for the public.</p>
<p>Some are private to prevent people from abusing the services.</p>
<p>You can get access to these services by asking any of the <a href=/admins>admins</a>.</p>
<b> Public Services </b>
<ul>
<li>Gitea</li>
<li>Privatebin</li>
<li>Librarian</li>
<li>Invidious</li>
<li>Libreddit</li>
<li>Simplytranslate</li>
</ul>
<b> Private Services </b>
<ul>
<li>Nextcloud</li>
<li>Email</li>
<li>Matrix</li>
</ul>
<h2>Community</h2>
<ul>
<li><a href="https://matrix.to/#/#vern:envs.net" target="_blank">Matrix</a></li>
</ul>
</body>
</html>

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

11
nav.html Normal file
View File

@ -0,0 +1,11 @@
<link rel=stylesheet href="style.css">
<header>
<a href="https://vern.cc"><img src="logo.png" alt="logo" class="navlogo"></a>
<nav>
<a href="signup">SignUp</a>
<a href="wiki">Wiki</a>
<a href="rules">Rules</a>
<a href="privpol">PrivacyPolicy</a>
</nav>
</header>
<hr>

64
style.css Normal file
View File

@ -0,0 +1,64 @@
body {
font-family: 'Fira Code';
src: url("woff/FiraCode-Regular.woff") format("woff");
margin:20px auto;
max-width:800px;
line-height:1.5em;
font-size:1.1em;
background-color:#282c34;
color:#bbc2cf;
padding:0 10px;
hyphens:auto;
}
header {
display:flex;
justify-content:space-between;
align-items:center;
white-space:nowrap;
font-variant:small-caps;
}
nav {
display:inline-block;
}
nav li {
display:inline-block no;
margin-right:20px;
}
.navlogo {
width:50px;
height:50px;
}
a {
color:#ff6c6b;
text-decoration:none;
}
a:hover {
color:#ff6c6b;
}
.linkable::before {
content: "# ";
}
.linkable::hover {
color: #da8548;
}
h1,h2,h3 {
line-height:1.2;
color:#51afef;
font-size:1.3em;
}
pre {
tab-size:4;
}

BIN
woff/FiraCode-Regular.woff Normal file

Binary file not shown.