mirror of
https://github.com/byReqz/nils.lol.git
synced 2024-11-21 17:53:15 +00:00
Add files via upload
This commit is contained in:
parent
527e8e5af8
commit
89752b28c1
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 264 KiB |
66
index.html
Normal file
66
index.html
Normal file
@ -0,0 +1,66 @@
|
||||
#!/bin/sh
|
||||
<<\EOF
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta name="viewport" content="initial-scale = 1, maximum-scale=1, user-scalable = 0"/>
|
||||
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
||||
<meta name="HandheldFriendly" content="true"/>
|
||||
<meta name="MobileOptimized" content="320"/>
|
||||
<title>nils.lol</title>
|
||||
<link rel="stylesheet" href="./sp.css">
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon" />
|
||||
</head>
|
||||
<body>
|
||||
<p id="test">you should probably disable dark reader</p>
|
||||
<h1>Hi</h1>
|
||||
<p>im a Sysadmin and spare-time Developer. Sometimes I even actually develop things.</p>
|
||||
<div>
|
||||
<br/>
|
||||
git:
|
||||
<a href="https://git.nils.lol">https://git.nils.lol</a><br/>
|
||||
github:
|
||||
<a href="https://github.com/byreqz">https://github.com/byreqz</a><br/>
|
||||
twitter:
|
||||
<a href="https://twitter.com/byreqz">https://twitter.com/byreqz</a><br/>
|
||||
matrix:
|
||||
<a href="https://matrix.to/#/@byreqz:matrix.org">https://matrix.to/#/@byreqz:matrix.org</a><br/>
|
||||
steam:
|
||||
<a href="https://steamcommunity.com/id/byreqz">https://steamcommunity.com/id/byreqz</a><br/>
|
||||
keybase:
|
||||
<a href="https://keybase.io/byreqz">https://keybase.io/byreqz</a><br/>
|
||||
discord:
|
||||
nils#9800<br/>
|
||||
mail:
|
||||
nils //@// nils.lol<br/>
|
||||
portfolio:
|
||||
<a href="https://byreqz.de">https://byreqz.de</a><br/>
|
||||
<br/><br/>
|
||||
services hosted by me: <br/>
|
||||
<a href="https://dash.byreqz.de">https://dash.byreqz.de</a><br/>
|
||||
this site was blatantly "inspired" by: <br/>
|
||||
<a href="https://hackerc.at">https://hackerc.at</a><br/>
|
||||
and <br>
|
||||
<a href="https://hashbang.sh">https://hashbang.sh</a><br/>
|
||||
and <br>
|
||||
<a href="https://github.com/susam/spcss">https://github.com/susam/spcss</a><br/>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
<!--
|
||||
EOF
|
||||
#!/bin/sh
|
||||
printf "\e[35mHi, it seems like you found me"'!'"\n\e[0m"
|
||||
printf "\e[1;33;mI'm \e[4;5mNils\n\e[0m"
|
||||
printf "\e[4;1;34mYou can find me here:\n\e[0m"
|
||||
printf "git: \e[1;35mhttps://git.nils.lol\n\e[0m"
|
||||
printf "github: \e[1;35mhttps://github.com/byreqz\n\e[0m"
|
||||
printf "twitter: \e[1;35mhttps://twitter.com/byreqz\n\e[0m"
|
||||
printf "matrix: \e[1;35mhttps://matrix.to/#/@byreqz:matrix.org\n\e[0m"
|
||||
printf "keybase \e[1;35mhttps://keybase.io/byreqz\n\e[0m"
|
||||
printf "discord: \e[1;35mnils#9800\n\e[0m"
|
||||
printf "mail: \e[1;35mnils //@// nils.lol\n\e[0m"
|
||||
printf "portfolio: \e[1;35mhttps://byreqz.de\n\e[0m"
|
||||
printf "services: \e[1;35mhttps://dash.byreqz.de\n\e[0m"
|
||||
exit 0
|
144
sp.css
Normal file
144
sp.css
Normal file
@ -0,0 +1,144 @@
|
||||
* {
|
||||
font-family: 'Hack','Hack Nerd Font', 'SF Mono', 'Source Code Pro', 'Sauce Code Pro', 'Courier','Consolas', monospace;
|
||||
background-color: #0c0a20;
|
||||
color: white;
|
||||
text-indent:-9999px;
|
||||
}
|
||||
|
||||
#test {
|
||||
color: #0c0a20;
|
||||
background-color: transparent;
|
||||
position: absolute;
|
||||
left: 60px;
|
||||
}
|
||||
|
||||
a, .toctext {
|
||||
color: #DF85FF !important;
|
||||
}
|
||||
.tocnumber, i {
|
||||
color: #FF2E97 !important;
|
||||
}
|
||||
code {
|
||||
color: #ffd400 !important;
|
||||
}
|
||||
|
||||
p {
|
||||
text-indent: 0px;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color:#8b32ad;
|
||||
user-select:none
|
||||
}
|
||||
|
||||
body {
|
||||
/* color: #333; */
|
||||
/* font-family: helvetica, arial, sans-serif; */
|
||||
line-height: 1.5;
|
||||
margin: 0 auto;
|
||||
max-width: 40em;
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin: 1em 0 0.5em 0;
|
||||
line-height: 1.2;
|
||||
text-indent:0px;
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
color: #03c;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover, a:active, a:focus {
|
||||
color: #06f;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
h1 a:empty:before, h2 a:empty:before, h3 a:empty:before,
|
||||
h4 a:empty:before, h5 a:empty:before, h6 a:empty:before {
|
||||
content: "#";
|
||||
}
|
||||
|
||||
h1 a:empty, h2 a:empty, h3 a:empty, h4 a:empty, h5 a:empty, h6 a:empty {
|
||||
visibility: hidden;
|
||||
padding-left: 0.25em;
|
||||
}
|
||||
|
||||
h1:hover a:empty, h2:hover a:empty, h3:hover a:empty,
|
||||
h4:hover a:empty, h5:hover a:empty, h6:hover a:empty {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 1em 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
pre, code, samp, kbd {
|
||||
color: #009;
|
||||
font-family: monospace, monospace;
|
||||
}
|
||||
|
||||
pre kbd {
|
||||
color: #060;
|
||||
}
|
||||
|
||||
pre, blockquote {
|
||||
background: #eee;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: medium solid #ccc;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
blockquote :first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
blockquote :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th, td {
|
||||
border: thin solid #999;
|
||||
padding: 0.3em 0.4em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
pre, code, samp, kbd {
|
||||
color: #6cf;
|
||||
}
|
||||
pre kbd {
|
||||
color: #9c9;
|
||||
}
|
||||
pre, blockquote {
|
||||
background: #111;
|
||||
}
|
||||
blockquote {
|
||||
border-color: #444;
|
||||
}
|
||||
th, td {
|
||||
border-color: #666;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user