From 44dc49dd66f71984fb25c73d78c9f772b95abe4f Mon Sep 17 00:00:00 2001 From: stderr64 Date: Tue, 9 Apr 2024 19:08:10 +0300 Subject: First commit --- about/index.html | 55 ++++++++++++++++++ css/xservers.css | 132 ++++++++++++++++++++++++++++++++++++++++++++ debianrepository/index.html | 66 ++++++++++++++++++++++ fonts/FreeMono.ttf | Bin 0 -> 584424 bytes images/logo.svg | 14 +++++ index.html | 43 +++++++++++++++ servers/index.html | 51 +++++++++++++++++ 7 files changed, 361 insertions(+) create mode 100644 about/index.html create mode 100644 css/xservers.css create mode 100644 debianrepository/index.html create mode 100644 fonts/FreeMono.ttf create mode 100644 images/logo.svg create mode 100644 index.html create mode 100644 servers/index.html diff --git a/about/index.html b/about/index.html new file mode 100644 index 0000000..b956706 --- /dev/null +++ b/about/index.html @@ -0,0 +1,55 @@ + + + + + + + +About - Xservers + + + +
+
+
+Xservers +
+
+ +
+
+
+
+About Xservers +
+
+
+ +Xservers is server network where different kinds of servers are hosted. +

+Hosting servers first started in july 2012 and name changes have happened multiple times since then currently being named Xservers. +

+The owner of Xservers has been doing programming since june 2008. +

+Where the name Xservers came from: +
+There's not any special reason why it's named that, the idea came from that "X" can be used to mean unknown number and in this case unknown number of total servers that will be hosted because that can change at any time. +

+Links to Xservers owner: +
+Owner's steam profile +
+
+
+
+
+
+
+ + diff --git a/css/xservers.css b/css/xservers.css new file mode 100644 index 0000000..1b456ea --- /dev/null +++ b/css/xservers.css @@ -0,0 +1,132 @@ +@font-face{ + font-family: "FreeMono"; + src: url('../fonts/FreeMono.ttf'); +} + +:root{ + font-family: "FreeMono"; + background-image: linear-gradient(135deg, #000000, #222222); + background-size: 100% 100%; + background-attachment: fixed; + background-repeat: no-repeat; + background-position: center; + width: 100%; + height: 100%; + min-height: 100%; + min-width: 100%; + top: 0px; + left: 0px; + bottom: 0px; + margin: 0px; +} + +body{ + font-family: "FreeMono"; + background-image: linear-gradient(135deg, #000000, #222222); + background-size: 100% 100%; + background-attachment: fixed; + background-repeat: no-repeat; + background-position: center; + width: 100%; + height: 100%; + min-height: 100%; + min-width: 100%; + top: 0px; + left: 0px; + bottom: 0px; + margin: 0px; +} + +.page_header_background{ + width: 99%; + top: 10px; + background: linear-gradient(180deg, #000000, #FF9900); + position: relative; + border-radius: 10px; + height: 185px; +} + +.page_header_title{ + top: 65px; + font-size: 72px; + color: #000000; + text-shadow: 0px 0px 10px #000000; + position: relative; + font-weight: bold; +} + +.page_nav{ + background-color: #000000; + position: relative; + width: 100%; + word-wrap: break-word; +} + +.content{ + margin: auto; + background-color: #222222; + position: relative; + top: 40px; + width: 95%; + box-shadow: 0px 0px 5px #FF9900; + border-radius: 10px; + margin-bottom: 40px; +} + +.content_inner{ + height: 100%; + position: relative; + margin: 0px 20px; + word-wrap: break-word; +} + +.content_link{ + font-size: 24px; + color: #FF9900; +} + +.wtext{ + color: #FFFFFF; +} + +.nav_link{ + color: #FF9900; + height: 100%; + font-size: 24px; + font-weight: bold; + padding: 0px 1px; + text-decoration: none; + position: relative; +} + +.nav_link:hover{ + text-decoration: underline; + cursor: pointer; + background-color: #FF9900; + color: #000000; + transition-duration: 0.25s; + -moz-transition-duration: 0.25s; + -webkit-transition-duration: 0.25s; +} + +.nav_link:not(:hover){ + text-decoration: none; + background-color: #000000; + color: #FF9900; + transition-duration: 0.25s; + -moz-transition-duration: 0.25s; + -webkit-transition-duration: 0.25s; +} + +.content_title{ + font-weight: bold; + font-size: 35px; + margin: 0px 20px; + position: relative; +} + +.content_text{ + color: #FFFFFF; + font-size: 24px; + position: relative; +} diff --git a/debianrepository/index.html b/debianrepository/index.html new file mode 100644 index 0000000..75a5857 --- /dev/null +++ b/debianrepository/index.html @@ -0,0 +1,66 @@ + + + + + + + +Xservers debian package repositories - Xservers + + + +
+
+
+Xservers +
+
+ +
+
+
+
+Xservers debian package repositories +
+
+
+ +Xservers has a debian package repository which contain things such as builds of newer PCSX2 emulator version for debian stable. +
+The packages are built to be used with debian stable. +
+More packages might come in the future. +
+
+
+How to use the repositories +
+
+To download or update the signing key used to verify packages: +
+su -c "curl -4 -L -s 'https://files.xservers.dy.fi/gpg_keys/xservers.gpg' -o /usr/share/keyrings/xservers.gpg" +
+
+To add the stable repository: +
+su -c "echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/xservers.gpg] https://deb.xservers.dy.fi/ stable main' > /etc/apt/sources.list.d/xservers.list" +
+
+Experimental repository (only use this if you really want to try packages that are experimental): +
+su -c "echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/xservers.gpg] https://deb.xservers.dy.fi/ experimental main' > /etc/apt/sources.list.d/xservers_experimental.list" +
+
+
+
+
+
+
+ + diff --git a/fonts/FreeMono.ttf b/fonts/FreeMono.ttf new file mode 100644 index 0000000..ff5cc0e Binary files /dev/null and b/fonts/FreeMono.ttf differ diff --git a/images/logo.svg b/images/logo.svg new file mode 100644 index 0000000..cf44fa1 --- /dev/null +++ b/images/logo.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + VoidNet + diff --git a/index.html b/index.html new file mode 100644 index 0000000..d09aeec --- /dev/null +++ b/index.html @@ -0,0 +1,43 @@ + + + + + + + +Home - Xservers + + + +
+
+
+Xservers +
+
+ +
+
+
+
+Welcome to Xservers main site +
+
+
+ +Welcome to main site of Xservers, a place where any server ideas are hosted. + +
+
+
+
+
+
+ + diff --git a/servers/index.html b/servers/index.html new file mode 100644 index 0000000..8266872 --- /dev/null +++ b/servers/index.html @@ -0,0 +1,51 @@ + + + + + + + +Servers - Xservers + + + +
+
+
+Xservers +
+
+ +
+
+
+
+Xservers Servers +
+
+
+ +Gitweb: Gitweb repositories +

+Git: Git server +

+SVN: SVN repositories +

+IRC (unencrypted): xservers.dy.fi (port 6667) +

+IRC (TLS encryption, recommended for actual use): xservers.dy.fi (port 6697) +
+
+
+
+
+
+
+ + -- cgit v1.2.3-86-g962b