initial commit

This commit is contained in:
CaptainArk 2019-02-01 21:11:59 +01:00
commit 35b4256079
Signed by: captainark
GPG Key ID: 826A68284BC18F6C
17 changed files with 273 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.DS_Store
.swp

0
README.md Normal file
View File

143
css/style.css Normal file
View File

@ -0,0 +1,143 @@
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background: #f0f0f0;
padding: 70px 0;
}
img {
border:1px solid #000000;
border-radius: 50%;
}
.signin {
display:block;
margin:20px auto;
max-width:400px;
background: #fff;
border:1px solid #ccc;
border-radius: 10px;
padding: 20px;
}
.center {
text-align:center;
}
.btn {
color: #fff;
background-color: #428bca;
border: 1px solid #357ebd;
-webkit-border-radius: 4;
-moz-border-radius: 4;
border-radius: 4px;
font-size: 14px;
padding: 6px 12px;
text-decoration: none;
cursor: pointer;
}
.btn:hover {
background-color: #3071a9;
border-color: #285e8e;
ext-decoration: none;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: 700;
}
input {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
margin:0;
box-sizing: border-box;
}
footer {
display:block;
font-size:10px;
color:#aaa;
text-align:center;
margin-bottom:10px;
}
footer a {
display:inline-block;
height:25px;
line-height:25px;
color:#aaa;
text-decoration:underline;
}
footer a:hover {
color:#aaa;
}
.row {
text-align:center;
margin-top: 10px;
margin-bottom: 10px; }
.row .column {
display: inline;
letter-spacing: 0.5em; }
.row .column a {
font-size: 250%;
color: rgba(0,0,0,0) }
.row .column a:not(:hover) {
opacity: 0.8;
transition: opacity .5s; }
icons {
width: 500px;
height: 40px;
margin: 0px auto;
padding: 45px 0;
font: "Helvetica Neue",Helvetica,Arial,sans-serif;
text-align: center;
text-transform: uppercase;
}
i {
color: #000000;
font-family: icons;
font-size: 150px;
font-weight: normal;
font-style: normal;
line-height: 0.0;
opacity: 0.7;
}
icons h2 {
margin: 0 0 8px;
color: #000000;
font-size: 55px;
font-weight: 300;
text-align: center;
opacity: 0.5;
text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}
icons ul {
margin: 0;
padding: 0;
}
icons li {
background: #000000;
background: rgba(255,255,255,0.90);
padding: 20px;
display: inline-block;
border-radius: 5px;
}

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

37
index.html Normal file
View File

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en" charset="utf-8">
<head>
<title>Nibelung Valesti Home Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.5/css/fork-awesome.min.css" integrity="sha256-P64qV9gULPHiZTdrS1nM59toStkgjM0dsf5mK/UwBV4=" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="apple-touch-icon" sizes="180x180" href="static/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png">
<link rel="manifest" href="static/site.webmanifest">
<link rel="mask-icon" href="static/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="static/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="static/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<center><img src="static/logo.jpg" alt="logo"></center>
<div class="row">
<div class="column"><a href=https://www.captainark.net/ class="check-circle"><i class="fa fa-check-circle"></i></a></div>
<div class="column"><a href=https://social.captainark.net/ class="activitypub"><i class="fa fa-activitypub"></i></a></div>
<div class="column"><a href=https://chat.captainark.net/ class="bullhorn"><i class="fa fa-bullhorn"></i></a></div>
<div class="column"><a href=https://git.captainark.net/ class="github-alt"><i class="fa fa-github-alt"></i></a></div>
<div class="column"><a href=https://paste.captainark.net/ class="paste"><i class="fa fa-paste"></i></a></div>
<div class="column"><a href=https://pics.captainark.net/ class="pics"><i class="fa fa-camera"></i></a></div>
</div>
<footer>
It shall be engraved upon your soul! Divine assault! Nibelung Valesti!
</footer>
</body>
</html>

32
index.nginx-debian.html Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx on Debian!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx on Debian!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working on Debian. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a></p>
<p>
Please use the <tt>reportbug</tt> tool to report bugs in the
nginx package with Debian. However, check <a
href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?ordering=normal;archive=0;src=nginx;repeatmerged=0">existing
bug reports</a> before reporting a new bug.
</p>
<p><em>Thank you for using debian and nginx.</em></p>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
static/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

9
static/browserconfig.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/static/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>

BIN
static/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 610 B

BIN
static/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 914 B

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
static/logo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
static/mstile-150x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,31 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="284.000000pt" height="284.000000pt" viewBox="0 0 284.000000 284.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,284.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M703 2705 c-109 -30 -151 -60 -329 -239 -148 -147 -176 -181 -204
-241 -63 -132 -50 -316 29 -435 16 -25 126 -140 243 -256 236 -234 266 -255
402 -276 128 -20 259 16 355 98 l43 37 70 -71 70 -72 -36 -41 c-88 -103 -122
-245 -92 -387 24 -117 51 -154 285 -390 224 -225 260 -253 369 -282 97 -25
233 -10 325 37 78 39 388 348 427 426 77 154 61 349 -39 475 -40 50 -388 398
-431 430 -154 117 -409 109 -553 -18 -19 -16 -38 -30 -43 -30 -10 0 -134 123
-134 133 0 4 11 20 25 35 14 15 43 61 63 101 37 74 37 76 37 196 0 119 0 122
-37 196 -33 67 -61 100 -247 286 -207 209 -254 247 -341 278 -62 22 -193 27
-257 10z m156 -293 c18 -2 80 -57 214 -189 104 -104 195 -200 203 -216 24 -44
20 -112 -7 -152 -13 -19 -27 -35 -30 -35 -3 0 -17 13 -30 29 -13 16 -42 40
-63 55 -104 70 -236 -5 -231 -131 2 -49 16 -72 75 -129 l42 -41 -34 -21 c-41
-25 -90 -33 -136 -20 -23 6 -87 63 -223 199 -104 105 -194 201 -199 215 -16
40 -12 96 9 129 26 44 271 285 303 299 25 11 40 12 107 8z m1126 -1122 c39
-15 391 -367 411 -411 12 -28 15 -50 9 -86 -6 -45 -14 -55 -150 -190 -79 -79
-156 -147 -170 -153 -34 -13 -86 -13 -122 0 -37 14 -391 366 -409 407 -8 18
-14 45 -14 60 0 30 37 113 51 113 5 0 24 -15 42 -34 71 -75 139 -94 207 -57
51 26 80 74 80 130 0 52 -20 90 -73 140 -19 19 -33 40 -30 47 13 35 112 55
168 34z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

19
static/site.webmanifest Normal file
View File

@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/static/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/static/android-chrome-256x256.png",
"sizes": "256x256",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}