first commit
32
css/games.css
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
div.game-container > a.game {
|
||||||
|
display: inline-block;
|
||||||
|
width: calc(460px * 0.8);
|
||||||
|
height: calc(215px * 0.8);
|
||||||
|
background-size: calc(460px * 0.8) calc(215px * 0.8);
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
transition: background-size 200ms;
|
||||||
|
}
|
||||||
|
div.game-container > a.game:hover {
|
||||||
|
background-size: calc(460px * 0.7) calc(215px * 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.game-container > a.game.dd2 {
|
||||||
|
background-image: url(../media/games/dd2.jpg);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.game-container > a.game.enshrouded {
|
||||||
|
background-image: url(../media/games/enshrouded.jpg);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.game-container > a.game.fallout4 {
|
||||||
|
background-image: url(../media/games/fallout4.jpg);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.game-container > a.game.noita {
|
||||||
|
background-image: url(../media/games/noita.jpg);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.game-container > a.game.sotf {
|
||||||
|
background-image: url(../media/games/sotf.jpg);
|
||||||
|
}
|
18
css/icons.css
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
i.icon {
|
||||||
|
display: inline-block;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
background-position: center;
|
||||||
|
background-size: contain;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 5px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
i.icon.mastodon {
|
||||||
|
background-image: url(../media/icons/mastodon.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
i.icon.matrix {
|
||||||
|
background-image: url(../media/icons/matrix.svg);
|
||||||
|
}
|
96
css/main.css
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
font-family: monospace;
|
||||||
|
background-color: black;
|
||||||
|
color: white;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes huerot-filter {
|
||||||
|
0% { filter: hue-rotate(0deg); }
|
||||||
|
100% { filter: hue-rotate(360deg); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes huerot-text {
|
||||||
|
0% { color: red; }
|
||||||
|
33% { color: green; }
|
||||||
|
66% { color: blue; }
|
||||||
|
100% {color: red; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes huerot-border {
|
||||||
|
0% { border-color: red; }
|
||||||
|
33% { border-color: green; }
|
||||||
|
66% { border-color: blue; }
|
||||||
|
100% { border-color: red; }
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
width: calc(100vw - 10px);
|
||||||
|
height: 200px;
|
||||||
|
margin: auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
header > img {
|
||||||
|
animation: linear huerot-filter 5s infinite;
|
||||||
|
margin: auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
header > nav {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
max-width: 720px;
|
||||||
|
width: 100%;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
header > nav > a {
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 120%;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 10px 0 10px 0;
|
||||||
|
animation: linear huerot-text 5s infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
header > nav > a::before {
|
||||||
|
content: '< ';
|
||||||
|
}
|
||||||
|
|
||||||
|
header > nav > a::after {
|
||||||
|
content: ' >';
|
||||||
|
}
|
||||||
|
|
||||||
|
header > nav > a:hover::before {
|
||||||
|
content: '> ';
|
||||||
|
}
|
||||||
|
|
||||||
|
header > nav > a:hover::after {
|
||||||
|
content: ' <';
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
width: calc(100vw - 10px);
|
||||||
|
margin: auto;
|
||||||
|
min-height: calc(100vh - 200px);
|
||||||
|
border-top: 2px solid red;
|
||||||
|
border-left: 2px solid red;
|
||||||
|
animation: linear huerot-border 5s infinite;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
main table th {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
main table th[colspan="2"] {
|
||||||
|
text-align: center;
|
||||||
|
}
|
3
css/privacy.css
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
main {
|
||||||
|
line-height: 150%;
|
||||||
|
}
|
58
css/whoami.css
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
div.yuki {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.yuki > img {
|
||||||
|
width: 100px;
|
||||||
|
animation: linear huerot-filter 5s infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.yuki > img:nth-child(1) {
|
||||||
|
opacity: 100%;
|
||||||
|
position: relative;
|
||||||
|
z-index: 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.yuki > img:nth-child(2) {
|
||||||
|
opacity: 50%;
|
||||||
|
margin-left: -80px;
|
||||||
|
animation-delay: 1s;
|
||||||
|
position: relative;
|
||||||
|
z-index: 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.yuki > img:nth-child(3) {
|
||||||
|
opacity: 25%;
|
||||||
|
margin-left: -80px;
|
||||||
|
animation-delay: 2s;
|
||||||
|
position: relative;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.yuki > img:nth-child(4) {
|
||||||
|
opacity: 12.5%;
|
||||||
|
margin-left: -80px;
|
||||||
|
animation-delay: 3s;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
section#identity {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
main section#socials {
|
||||||
|
line-height: 200%;
|
||||||
|
}
|
||||||
|
|
||||||
|
section#socials a,
|
||||||
|
section#socials a:visited {
|
||||||
|
color: red;
|
||||||
|
text-decoration: none;
|
||||||
|
animation: linear huerot-text 5s infinite;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
section#socials a:hover::after {
|
||||||
|
content: ' <';
|
||||||
|
}
|
29
games.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>introvertial space</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link href="css/icons.css" rel="stylesheet">
|
||||||
|
<link href="css/main.css" rel="stylesheet">
|
||||||
|
<link href="css/games.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<img src="media/introvertialspace.svg">
|
||||||
|
<nav>
|
||||||
|
<a href="index.html">whoami</a>
|
||||||
|
<a href="games.html">fav games</a>
|
||||||
|
<a href="privacy.html">privacy</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<div class="game-container">
|
||||||
|
<a href="https://store.steampowered.com/app/2054970/Dragons_Dogma_2/" target="_blank" class="game dd2"></a>
|
||||||
|
<a href="https://store.steampowered.com/app/1203620/Enshrouded/" target="_blank" class="game enshrouded"></a>
|
||||||
|
<a href="https://store.steampowered.com/app/377160/Fallout_4/" target="_blank" class="game fallout4"></a>
|
||||||
|
<a href="https://store.steampowered.com/app/881100/Noita/" target="_blank" class="game noita"></a>
|
||||||
|
<a href="https://store.steampowered.com/app/1326470/Sons_Of_The_Forest/" target="_blank" class="game sotf"></a>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
73
index.html
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>introvertial space</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link href="css/icons.css" rel="stylesheet">
|
||||||
|
<link href="css/main.css" rel="stylesheet">
|
||||||
|
<link href="css/whoami.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<img src="media/introvertialspace.svg">
|
||||||
|
<nav>
|
||||||
|
<a href="index.html">whoami</a>
|
||||||
|
<a href="games.html">fav games</a>
|
||||||
|
<a href="privacy.html">privacy</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<section id="socials">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td><a href="https://chaos.social/@xoy" target="_blank" rel="noopener noreferrer me"><i class="icon mastodon"></i>@xoy@chaos.social</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><a href="https://matrix.to/#/@iamxoy:matrix.org" target="_blank" rel="noopener noreferrer"><i class="icon matrix"></i>@iamxoy:matrix.org</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</section>
|
||||||
|
<section id="identity">
|
||||||
|
<div class="yuki">
|
||||||
|
<img src="media/yuki.svg">
|
||||||
|
<img src="media/yuki.svg">
|
||||||
|
<img src="media/yuki.svg">
|
||||||
|
<img src="media/yuki.svg">
|
||||||
|
</div>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<td>Yuki</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Nick</th>
|
||||||
|
<td>xoy</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Age</th>
|
||||||
|
<td>23</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Gender</th>
|
||||||
|
<td>non-binary</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Sexuality</th>
|
||||||
|
<td>pansexual</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">Pronouns</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>🇬🇧</td>
|
||||||
|
<td>they/them</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>🇩🇪</td>
|
||||||
|
<td>dey/denen</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
media/games/dd2.jpg
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
media/games/enshrouded.jpg
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
media/games/fallout4.jpg
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
media/games/noita.jpg
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
media/games/sotf.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
4
media/icons/mastodon.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="61.076954mm" height="65.47831mm" viewBox="0 0 216.4144 232.00976">
|
||||||
|
<path fill="#2b90d9" d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/>
|
||||||
|
<path fill="#fff" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
7
media/icons/matrix.svg
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 520 520" style="enable-background:new 0 0 520 520;" xml:space="preserve">
|
||||||
|
<path fill="#fff" d="M13.7,11.9v496.2h35.7V520H0V0h49.4v11.9H13.7z"/>
|
||||||
|
<path fill="#fff" d="M166.3,169.2v25.1h0.7c6.7-9.6,14.8-17,24.2-22.2c9.4-5.3,20.3-7.9,32.5-7.9c11.7,0,22.4,2.3,32.1,6.8 c9.7,4.5,17,12.6,22.1,24c5.5-8.1,13-15.3,22.4-21.5c9.4-6.2,20.6-9.3,33.5-9.3c9.8,0,18.9,1.2,27.3,3.6c8.4,2.4,15.5,6.2,21.5,11.5 c6,5.3,10.6,12.1,14,20.6c3.3,8.5,5,18.7,5,30.7v124.1h-50.9V249.6c0-6.2-0.2-12.1-0.7-17.6c-0.5-5.5-1.8-10.3-3.9-14.3 c-2.2-4.1-5.3-7.3-9.5-9.7c-4.2-2.4-9.9-3.6-17-3.6c-7.2,0-13,1.4-17.4,4.1c-4.4,2.8-7.9,6.3-10.4,10.8c-2.5,4.4-4.2,9.4-5,15.1 c-0.8,5.6-1.3,11.3-1.3,17v103.3h-50.9v-104c0-5.5-0.1-10.9-0.4-16.3c-0.2-5.4-1.3-10.3-3.1-14.9c-1.8-4.5-4.8-8.2-9-10.9 c-4.2-2.7-10.3-4.1-18.5-4.1c-2.4,0-5.6,0.5-9.5,1.6c-3.9,1.1-7.8,3.1-11.5,6.1c-3.7,3-6.9,7.3-9.5,12.9c-2.6,5.6-3.9,13-3.9,22.1 v107.6h-50.9V169.2H166.3z"/>
|
||||||
|
<path fill="#fff" d="M506.3,508.1V11.9h-35.7V0H520v520h-49.4v-11.9H506.3z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
30
media/introvertialspace.svg
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="84.09697mm"
|
||||||
|
height="28.158493mm"
|
||||||
|
viewBox="0 0 84.09697 28.158493"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-64.002881,-59.282465)">
|
||||||
|
<path
|
||||||
|
style="font-style:italic;font-size:14.8167px;font-family:'Edge of the Galaxy';-inkscape-font-specification:'Edge of the Galaxy Italic';stroke-width:0.264583"
|
||||||
|
d="m 64.002884,72.511139 h 2.116155 l 4.380621,-10.580773 -2.553855,1.056268 z m 4.163579,-10.052639 2.553855,-1.059886 0.875401,-2.116155 -2.553855,1.059886 z m -1.51929,10.052639 h 2.116155 l 3.501603,-8.461001 h 2.116154 l -3.501603,8.461001 h 2.116155 l 3.942921,-9.524505 c 0.12299,-0.289388 0.119372,-0.538986 0,-0.748793 -0.122991,-0.202572 -0.32918,-0.307475 -0.622186,-0.307475 h -2.116155 c -0.293006,0 -0.582394,0.104903 -0.879018,0.311092 -0.289389,0.209807 -0.495578,0.459405 -0.614951,0.748794 l 0.437701,-1.059886 h -2.116155 z m 10.049022,0 h 3.17604 l 0.875401,-2.116155 h -2.116155 l 2.19212,-5.292195 2.553855,-1.056269 0.8754,-2.116154 -2.553855,1.056268 1.313101,-3.172423 h -2.116154 l -1.750802,4.232309 -2.553855,1.056269 -0.879018,2.119772 2.553855,-1.059886 -2.192119,5.292195 c -0.119373,0.293006 -0.119373,0.542604 0,0.748793 0.12299,0.20619 0.32918,0.307476 0.622186,0.307476 z m 3.704175,0 h 2.116154 l 3.501603,-8.461001 h 1.056269 l -0.875401,2.112537 2.557473,-1.059886 0.8754,-2.116155 c 0.12299,-0.289388 0.12299,-0.538986 0.0036,-0.748793 -0.122991,-0.202572 -0.32918,-0.307475 -0.622186,-0.307475 h -1.059886 c -0.293006,0 -0.582395,0.104903 -0.879018,0.311092 -0.289389,0.209807 -0.495578,0.459405 -0.614951,0.748794 l 0.4377,-1.059886 h -2.116154 z m 10.928039,-2.116155 h -2.116154 l 2.629819,-6.348464 h 2.116155 z m -4.051441,2.116155 h 4.232309 c 0.289389,0 0.582395,-0.101286 0.875401,-0.307476 0.293006,-0.206189 0.499195,-0.455787 0.618568,-0.748793 l 3.508838,-8.468236 c 0.12299,-0.289388 0.119373,-0.538986 0,-0.748793 -0.12299,-0.202572 -0.32918,-0.307475 -0.622186,-0.307475 h -4.232309 c -0.293006,0 -0.582395,0.104903 -0.879018,0.311092 -0.289389,0.209807 -0.495578,0.455788 -0.614951,0.745176 l -3.508838,8.468236 c -0.119373,0.293006 -0.119373,0.542604 0,0.748793 0.122991,0.20619 0.32918,0.307476 0.622186,0.307476 z m 7.827964,0 h 2.329578 l 6.49678,-10.580773 h -2.11616 l -3.573949,5.820329 1.244372,-5.820329 h -2.112538 z m 9.173618,-5.288578 1.31672,-3.176041 h 2.11616 l -0.87902,2.116155 z m -3.24839,5.288578 h 4.23231 c 0.28939,0 0.5824,-0.101286 0.8754,-0.307476 0.29301,-0.206189 0.4992,-0.455787 0.61857,-0.748793 l 1.53738,-3.704175 -2.55385,1.056269 -0.65836,1.58802 h -2.11616 l 0.4377,-1.056268 5.10771,-2.116155 1.75442,-4.235927 c 0.12299,-0.289388 0.11937,-0.538986 0,-0.748793 -0.12299,-0.202572 -0.32918,-0.307475 -0.62218,-0.307475 h -4.23231 c -0.29301,0 -0.5824,0.104903 -0.87902,0.311092 -0.28939,0.209807 -0.49558,0.455788 -0.61495,0.745176 l -3.50884,8.468236 c -0.11937,0.293006 -0.11937,0.542604 0,0.748793 0.12299,0.20619 0.32918,0.307476 0.62218,0.307476 z m 5.82033,0 h 2.11616 l 3.5016,-8.461001 h 1.05627 l -0.8754,2.112537 2.55747,-1.059886 0.8754,-2.116155 c 0.12299,-0.289388 0.12299,-0.538986 0.004,-0.748793 -0.12299,-0.202572 -0.32918,-0.307475 -0.62219,-0.307475 h -1.05988 c -0.29301,0 -0.5824,0.104903 -0.87902,0.311092 -0.28939,0.209807 -0.49558,0.459405 -0.61495,0.748794 l 0.4377,-1.059886 h -2.11615 z m 8.99276,0 h 3.17604 l 0.8754,-2.116155 h -2.11616 l 2.19212,-5.292195 2.55386,-1.056269 0.8754,-2.116154 -2.55386,1.056268 1.3131,-3.172423 H 120.043 l -1.7508,4.232309 -2.55386,1.056269 -0.87902,2.119772 2.55386,-1.059886 -2.19212,5.292195 c -0.11937,0.293006 -0.11937,0.542604 0,0.748793 0.12299,0.20619 0.32918,0.307476 0.62219,0.307476 z m 3.70417,0 h 2.11616 l 4.38062,-10.580773 -2.55386,1.056268 z M 123.711,62.4585 l 2.55386,-1.059886 0.8754,-2.116155 -2.55386,1.059886 z m 3.58842,7.936484 h -2.11615 l 0.8754,-2.116154 2.55385,-1.056269 z m -4.05144,2.116155 h 2.11615 c 0.28939,0 0.5824,-0.101286 0.87541,-0.307476 0.293,-0.206189 0.49919,-0.455787 0.61856,-0.748793 l -0.43408,1.056269 h 2.11616 l 3.94292,-9.524505 c 0.12299,-0.289388 0.11937,-0.538986 0,-0.748793 -0.12299,-0.202572 -0.32918,-0.307475 -0.62219,-0.307475 h -4.23231 c -0.293,0 -0.58239,0.104903 -0.87902,0.311092 -0.28939,0.209807 -0.49558,0.455788 -0.61495,0.745176 l -1.53376,3.704175 2.55386,-1.056268 0.65836,-1.588021 h 2.11615 l -0.4377,1.056269 -5.11133,2.119772 -1.75442,4.232309 c -0.11937,0.293006 -0.11937,0.542604 0,0.748793 0.12299,0.20619 0.32918,0.307476 0.62219,0.307476 z m 5.82033,0 h 2.11616 l 5.25602,-12.696928 -2.55386,1.056269 z"
|
||||||
|
id="text1"
|
||||||
|
aria-label="introvertial"
|
||||||
|
fill="#ff0000"/>
|
||||||
|
<path
|
||||||
|
d="m 111.26745,85.324791 h 4.23231 c 0.28939,0 0.58239,-0.101286 0.8754,-0.307476 0.29301,-0.206189 0.4992,-0.455787 0.61857,-0.748793 l 2.85048,-6.880215 -5.10771,2.116154 1.09606,-2.644289 h 2.11615 l -0.4377,1.056269 2.55386,-1.056269 0.4377,-1.059886 c 0.12299,-0.289388 0.11937,-0.538986 0,-0.748793 -0.12299,-0.202572 -0.32918,-0.307475 -0.62219,-0.307475 h -4.23231 c -0.293,0 -0.58239,0.104903 -0.87902,0.311092 -0.28939,0.209807 -0.49557,0.455788 -0.61495,0.745176 l -2.85048,6.880216 5.11133,-2.116155 -1.09606,2.644289 h -2.11615 l 0.4377,-1.056268 -2.55386,1.056268 -0.44132,1.059886 c -0.11937,0.293006 -0.11937,0.542604 0,0.748793 0.12299,0.20619 0.32918,0.307476 0.62219,0.307476 z m 10.92804,-2.116155 h -2.11615 l 2.62981,-6.348464 h 2.11616 z m -5.98673,4.23231 h 2.11616 l 1.31672,-3.176041 c -0.123,0.293006 -0.123,0.542604 -0.004,0.748793 0.12299,0.209807 0.32918,0.311093 0.62218,0.311093 h 2.11616 c 0.28939,0 0.58239,-0.101286 0.8754,-0.307476 0.293,-0.206189 0.49919,-0.455787 0.61857,-0.748793 l 3.50883,-8.468236 c 0.12299,-0.289388 0.11938,-0.538986 0,-0.748793 -0.12299,-0.202572 -0.32917,-0.307475 -0.62218,-0.307475 h -2.11616 c -0.293,0 -0.58239,0.104903 -0.8754,0.307475 -0.293,0.209807 -0.49557,0.459405 -0.61856,0.748793 l 0.4377,-1.056268 h -2.11616 z m 12.86333,-4.23231 h -2.11616 l 0.8754,-2.116154 2.55386,-1.056269 z m -4.05144,2.116155 h 2.11615 c 0.28939,0 0.5824,-0.101286 0.8754,-0.307476 0.29301,-0.206189 0.4992,-0.455787 0.61857,-0.748793 l -0.43408,1.056269 h 2.11615 l 3.94292,-9.524505 c 0.12299,-0.289388 0.11938,-0.538986 0,-0.748793 -0.12299,-0.202572 -0.32918,-0.307475 -0.62218,-0.307475 h -4.23231 c -0.29301,0 -0.5824,0.104903 -0.87902,0.311092 -0.28939,0.209807 -0.49558,0.455788 -0.61495,0.745176 l -1.53376,3.704175 2.55385,-1.056268 0.65836,-1.588021 h 2.11616 l -0.4377,1.056269 -5.11133,2.119772 -1.75442,4.232309 c -0.11937,0.293006 -0.11937,0.542604 0,0.748793 0.12299,0.20619 0.32918,0.307476 0.62219,0.307476 z m 6.8766,0 h 4.2323 c 0.28939,0 0.5824,-0.101286 0.87541,-0.307476 0.293,-0.206189 0.49919,-0.455787 0.61856,-0.748793 l 1.31672,-3.17604 -2.55385,1.059886 -0.4377,1.056268 h -2.11616 l 2.62982,-6.348464 h 2.11616 l -0.87902,2.116155 2.55747,-1.059886 0.8754,-2.116155 c 0.12299,-0.289388 0.11937,-0.538986 0,-0.748793 -0.12299,-0.202572 -0.32918,-0.307475 -0.62218,-0.307475 h -4.23231 c -0.29301,0 -0.5824,0.104903 -0.87902,0.311092 -0.28939,0.209807 -0.49558,0.459405 -0.61495,0.748794 l -3.50884,8.464618 c -0.11937,0.293006 -0.11937,0.542604 0,0.748793 0.12299,0.20619 0.32918,0.307476 0.62219,0.307476 z m 10.12498,-5.288578 1.31672,-3.176041 h 2.11615 l -0.87901,2.116155 z m -3.24839,5.288578 h 4.23231 c 0.28939,0 0.5824,-0.101286 0.8754,-0.307476 0.29301,-0.206189 0.4992,-0.455787 0.61857,-0.748793 l 1.53738,-3.704175 -2.55386,1.056269 -0.65835,1.58802 h -2.11616 l 0.4377,-1.056268 5.10771,-2.116155 1.75442,-4.235927 c 0.12299,-0.289388 0.11937,-0.538986 0,-0.748793 -0.12299,-0.202572 -0.32918,-0.307475 -0.62219,-0.307475 h -4.23231 c -0.293,0 -0.58239,0.104903 -0.87901,0.311092 -0.28939,0.209807 -0.49558,0.455788 -0.61495,0.745176 l -3.50884,8.468236 c -0.11937,0.293006 -0.11937,0.542604 0,0.748793 0.12299,0.20619 0.32918,0.307476 0.62218,0.307476 z"
|
||||||
|
id="text2"
|
||||||
|
style="font-style:italic;font-size:14.8167px;font-family:'Edge of the Galaxy';-inkscape-font-specification:'Edge of the Galaxy Italic';stroke-width:0.264583"
|
||||||
|
aria-label="space"
|
||||||
|
fill="#ff0000" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.2 KiB |
31
media/yuki.svg
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="11.482938mm"
|
||||||
|
height="26.095692mm"
|
||||||
|
viewBox="0 0 11.482938 26.095692"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-68.538669,-51.604972)">
|
||||||
|
<g
|
||||||
|
id="text1"
|
||||||
|
style="font-size:14.8167px;line-height:0.8;stroke-width:0.264583"
|
||||||
|
aria-label="ゆ き">
|
||||||
|
<path
|
||||||
|
style="-inkscape-font-specification:sans-serif;fill:red"
|
||||||
|
d="m 75.324731,51.604975 -1.229786,0.02963 c 0.0889,0.222251 0.1778,0.607485 0.237067,0.918636 0.05927,0.281517 0.118534,0.681568 0.192617,1.170519 -2.163238,0.400051 -4.074592,1.970621 -4.919144,4.163493 -0.07408,-1.17052 0.22225,-3.407841 0.414868,-4.370927 0.05927,-0.251884 0.118533,-0.488951 0.192617,-0.696385 l -1.274237,-0.103717 c 0.01482,0.192618 0.01482,0.414868 -0.01482,0.681569 -0.0889,0.814918 -0.385234,2.874439 -0.385234,4.53391 0,1.407586 0.207433,2.904073 0.474134,3.837525 l 1.037169,-0.162984 c -0.0889,-0.385234 -0.1778,-1.066802 -0.192617,-1.392769 -0.01482,-0.311151 0.02963,-0.651935 0.0889,-0.918636 0.459318,-1.881721 2.118788,-4.133859 4.682077,-4.57836 0.05927,0.696385 0.103717,1.496487 0.103717,2.311405 0,1.289053 -0.13335,2.489206 -0.474134,3.526375 -0.977902,-0.325968 -1.674287,-1.066803 -2.178055,-2.118788 l -0.711202,0.829735 c 0.548218,1.096436 1.422403,1.881721 2.459572,2.281772 -0.459317,0.874185 -1.126069,1.585387 -2.074338,2.089154 l 1.096436,0.666752 c 0.992719,-0.651935 1.674287,-1.496487 2.133605,-2.474389 l 0.488951,0.02963 c 3.05224,0 4.548727,-1.866904 4.548727,-4.296843 0,-2.207688 -1.644654,-3.941242 -4.40056,-3.941242 -0.0889,-0.829735 -0.207434,-1.540937 -0.296334,-2.015071 z m 0.400051,3.022607 c 2.148421,0.05927 3.170774,1.39277 3.170774,2.978156 0,1.955805 -1.34832,3.141141 -3.422658,3.141141 h -0.0889 c 0.325967,-1.126069 0.444501,-2.370672 0.444501,-3.718992 0,-0.814918 -0.04445,-1.629837 -0.103717,-2.400305 z"
|
||||||
|
id="path2" />
|
||||||
|
<path
|
||||||
|
style="-inkscape-font-specification:sans-serif;fill:red"
|
||||||
|
d="m 71.101972,73.063029 -1.155703,-0.237067 c -0.325967,0.651935 -0.592668,1.274236 -0.577851,2.118788 0.01482,1.896538 1.644653,2.755906 4.548727,2.755906 1.259419,0 2.429938,-0.0889 3.467107,-0.251883 l 0.04445,-1.185336 c -1.066802,0.22225 -2.148421,0.31115 -3.526374,0.31115 -2.326222,0 -3.422658,-0.607484 -3.422658,-1.837271 0,-0.651934 0.266701,-1.155702 0.622302,-1.674287 z m 2.91889,-6.415631 0.103716,0.370418 c -1.422403,0.07408 -3.111507,0.02963 -4.889511,-0.177801 l 0.07408,1.08162 c 1.852087,0.162983 3.674542,0.192617 5.096945,0.103716 l 0.400051,1.155703 0.296334,0.770468 c -1.674287,0.148167 -3.926426,0.162984 -6.148931,-0.07408 l 0.05927,1.111252 c 2.281772,0.162984 4.711711,0.133351 6.519348,-0.02963 0.325967,0.726018 0.711202,1.452037 1.155703,2.133605 -0.474135,-0.05927 -1.43722,-0.162984 -2.222505,-0.251884 l -0.103717,0.903819 c 1.022352,0.118533 2.415122,0.251884 3.244857,0.474134 l 0.607485,-0.903819 C 78.006554,73.10748 77.828753,72.914862 77.66577,72.677795 77.280535,72.114761 76.939751,71.477643 76.628601,70.840524 77.66577,70.692357 78.599222,70.49974 79.310423,70.307123 l -0.1778,-1.111252 c -0.696385,0.22225 -1.733554,0.488951 -2.96334,0.637118 l -0.340784,-0.889002 -0.325967,-1.022352 c 1.022352,-0.133351 2.074337,-0.355601 2.918889,-0.592668 L 78.258438,66.262164 C 77.310169,66.573315 76.273,66.795565 75.221014,66.928916 75.058031,66.336248 74.92468,65.728763 74.865413,65.165728 l -1.259419,0.162984 c 0.148167,0.414868 0.296334,0.874185 0.414868,1.318686 z"
|
||||||
|
id="path3" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
31
privacy.html
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>introvertial space</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link href="css/icons.css" rel="stylesheet">
|
||||||
|
<link href="css/main.css" rel="stylesheet">
|
||||||
|
<link href="css/privacy.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<img src="media/introvertialspace.svg">
|
||||||
|
<nav>
|
||||||
|
<a href="index.html">whoami</a>
|
||||||
|
<a href="games.html">fav games</a>
|
||||||
|
<a href="privacy.html">privacy</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
This webside does not store any data. <br><br>
|
||||||
|
Network traffic may be stored temporarily. (Visitor's ip address) <br><br>
|
||||||
|
<b>Privacy on linked external websites cannot be guaranteed!</b> <br><br>
|
||||||
|
Linked external websites:
|
||||||
|
<ul>
|
||||||
|
<li>https://chaos.social/</li>
|
||||||
|
<li>https://matrix.to/</li>
|
||||||
|
<li>https://store.steampowered.com/</li>
|
||||||
|
</ul>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|