init
This commit is contained in:
commit
8320209980
4 changed files with 311 additions and 0 deletions
151
assets/style.css
Normal file
151
assets/style.css
Normal file
|
@ -0,0 +1,151 @@
|
|||
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400&display=swap');
|
||||
|
||||
#heading {
|
||||
height: 210px;
|
||||
background-color: gray;
|
||||
background-image: linear-gradient(to bottom right, #44434a, #2d2c30);
|
||||
position: absolute;
|
||||
top: 50px;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
text-align:center;
|
||||
margin:auto;
|
||||
color:#aea;
|
||||
font-size:80px;
|
||||
font-weight:100;
|
||||
padding-top:120px;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #111115; //url(vibemc_logo.png);
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: white;
|
||||
background-repeat:no-repeat;
|
||||
background-position: left top;
|
||||
background-attachment: absolute;
|
||||
background-size: 50px;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-weight: 300;
|
||||
color: #aea;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
div.staffp {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-bottom: 5px;
|
||||
padding: 0 10px;
|
||||
border-radius: 7px;
|
||||
background-color: #ddd;
|
||||
width: 110px;
|
||||
}
|
||||
|
||||
.clearBoth {
|
||||
clear:both;
|
||||
}
|
||||
|
||||
#hnav {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
font-size: 20px;
|
||||
font-weight: 300;
|
||||
top: 0;
|
||||
right: 0;
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
#hnav li {
|
||||
/*display: inline;*/
|
||||
float: left;
|
||||
}
|
||||
|
||||
#hnav li a {
|
||||
display: block;
|
||||
padding: 13px;
|
||||
text-decoration: none;
|
||||
color: #aea;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#hnav li a:hover {
|
||||
background-color: #222;
|
||||
}
|
||||
|
||||
#fnav {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 20px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
#fnav li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
|
||||
.wrapper {
|
||||
margin: 0 auto;
|
||||
margin-top: 400px;
|
||||
width: 700px;
|
||||
}
|
||||
|
||||
.box {
|
||||
background-color: #333;
|
||||
padding: 10px;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.rulesList {
|
||||
list-style: none;
|
||||
counter-reset: rlcounter;
|
||||
list-style-position: inside;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rulesList li {
|
||||
counter-increment: rlcounter;
|
||||
}
|
||||
|
||||
.rulesList li::before {
|
||||
content: counter(rlcounter) " ";
|
||||
color: #aea;
|
||||
font-weight: 300;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
#footer {
|
||||
margin: 0;
|
||||
margin-top: 100px;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 800px) {
|
||||
.wrapper {
|
||||
width: 95%;
|
||||
margin: 0;
|
||||
margin-top: 400px;
|
||||
}
|
||||
#heading {
|
||||
font-size: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
44
coc.html
Normal file
44
coc.html
Normal file
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="assets/style.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Code of Conduct - vulpineawoo</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<ul id="hnav">
|
||||
<li><a href=".">Home</a></li>
|
||||
<li><a href="coc.html">CoC</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
</ul>
|
||||
<div id="heading">Code of Conduct</div>
|
||||
|
||||
<div class="wrapper">
|
||||
<div class="box">
|
||||
<h1>general</h1>
|
||||
<p>
|
||||
channel ops can usually administrate their channels how they
|
||||
want to, but in general just assume good intentions and have
|
||||
good intentions
|
||||
</p>
|
||||
</div>
|
||||
<div class="box">
|
||||
<h1>note that irc networks are not democracies</h1>
|
||||
<p>
|
||||
bans etc are oper descretion, please do not argue about punishments.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<ul id="fnav">
|
||||
<li><a href=".">Home</a></li>
|
||||
<li><a href="coc.html">CoC</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
</ul>
|
||||
<br>
|
||||
© copyright 2020 VulpineAwoo IRC Network
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
41
index.html
Normal file
41
index.html
Normal file
|
@ -0,0 +1,41 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="assets/style.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>vulpineawoo</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<ul id="hnav">
|
||||
<li><a href=".">Home</a></li>
|
||||
<li><a href="coc.html">CoC</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
</ul>
|
||||
<div id="heading">vulpineawoo</div>
|
||||
|
||||
<div class="wrapper">
|
||||
<div class="box">
|
||||
<h1>About</h1>
|
||||
<p>vulpineawoo is a small IRC network, made by vulpines for vulpines.</p>
|
||||
</div>
|
||||
<div class="box">
|
||||
<h1>IRCv3 Compliance</h1>
|
||||
<p>
|
||||
at vulpineawoo, we strive to have as good IRCv3 compliance as we can, you will be able to use capabilities such as sasl, message-tags and certfp :3 if you find something not ircv3-compliant, please tell us!
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<ul id="fnav">
|
||||
<li><a href=".">Home</a></li>
|
||||
<li><a href="coc.html">CoC</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
</ul>
|
||||
<br>
|
||||
© copyright 2020 VulpineAwoo IRC Network
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
75
servers.html
Normal file
75
servers.html
Normal file
|
@ -0,0 +1,75 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="assets/style.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Servers - vulpineawoo</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<ul id="hnav">
|
||||
<li><a href=".">Home</a></li>
|
||||
<li><a href="coc.html">CoC</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
</ul>
|
||||
<div id="heading">Servers</div>
|
||||
|
||||
<div class="wrapper">
|
||||
<div class="box">
|
||||
<h1>irc.wppnx.pii.at</h1>
|
||||
<ul>
|
||||
<li><strong>status:</strong> up</li>
|
||||
<li><strong>accepts public connections:</strong> yes</li>
|
||||
<li><strong>SSL:</strong> yes</li>
|
||||
<li><strong>ports:</strong> 6667, 6697 (ssl)</li>
|
||||
<li><strong>location:</strong> eastern united states</li>
|
||||
<li><strong>description:</strong> InspIRCD server on a raspberry pi zero w</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="box">
|
||||
<h1>pi2.vulpineawoo</h1>
|
||||
<ul>
|
||||
<li><strong>status:</strong> down</li>
|
||||
<li><strong>accepts public connections:</strong> no</li>
|
||||
<li><strong>SSL:</strong> self-signed</li>
|
||||
<li><strong>ports:</strong> 6667, 6697 (ssl)</li>
|
||||
<li><strong>location:</strong> eastern united states</li>
|
||||
<li><strong>description:</strong> InspIRCD server on a raspberry pi 2</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="box">
|
||||
<h1>services.wppnx</h1>
|
||||
<ul>
|
||||
<li><strong>status:</strong> up</li>
|
||||
<li><strong>accepts public connections:</strong> no</li>
|
||||
<li><strong>SSL:</strong> no</li>
|
||||
<li><strong>ports:</strong> n/a</li>
|
||||
<li><strong>location:</strong> eastern united states</li>
|
||||
<li><strong>description:</strong> Atheme Services on a raspberry pi zero w</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="box">
|
||||
<h1>russia.irc.wppnx.pii.at</h1>
|
||||
<ul>
|
||||
<li><strong>status:</strong> down (JUPE'ed)</li>
|
||||
<li><strong>accepts public connections:</strong> no</li>
|
||||
<li><strong>SSL:</strong> no</li>
|
||||
<li><strong>ports:</strong> 6667</li>
|
||||
<li><strong>location:</strong> russia</li>
|
||||
<li><strong>description:</strong> InspIRCD server in russia</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<ul id="fnav">
|
||||
<li><a href=".">Home</a></li>
|
||||
<li><a href="coc.html">CoC</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
</ul>
|
||||
<br>
|
||||
© copyright 2020 VulpineAwoo IRC Network
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue