[Page update with text and visuals]

This commit is contained in:
xoy 2024-11-02 01:57:34 +01:00
parent a07c870cc0
commit bac14082e9
5 changed files with 113 additions and 42 deletions

View file

@ -16,17 +16,29 @@ html, body {
height: 100vh; height: 100vh;
overflow-x: hidden; overflow-x: hidden;
background-color: var(--black); background-color: var(--black);
background-image: url(../media/SpaceBackground.png);
background-size: 512px 512px;
background-repeat: repeat;
} }
header { header {
background-color: var(--yellow); background-color: var(--yellow);
color: var(--black); padding: 0 0 20px 0;
font-size: 90px; border-top-left-radius: 100px;
padding: 20px 0 20px 0; border-top-right-radius: 100px;
text-align: center; }
font-weight: 800;
position: relative; header > img {
font-family: 'Brush Script MT', cursive; width: 512px;
height: auto;
display: block;
margin: auto;
}
@media only screen and (max-width: 512px) {
header > img {
width: 90vw;
}
} }
main { main {
@ -35,6 +47,9 @@ main {
color: var(--white); color: var(--white);
padding: 42px; padding: 42px;
font-family: 'Courier New', monospace; font-family: 'Courier New', monospace;
background-color: black;
border-bottom-left-radius: 100px;
border-bottom-right-radius: 100px;
} }
header, main { header, main {
@ -56,8 +71,28 @@ main address {
justify-content: space-around; justify-content: space-around;
} }
main ul { main section#wil ul {
list-style-type: '🤍 '; list-style-type: '';
}
main section#wil ul li::before {
content: '🧡 ';
}
main section#wil ul li:nth-child(even)::before {
content: '💛 ';
}
main section#games ul {
list-style-type: '';
}
main section#games ul li::before {
content: '🟧 ';
}
main section#games ul li:nth-child(even)::before {
content: '🟨 ';
} }
main ul li { main ul li {
@ -71,3 +106,8 @@ main section#socials {
td { td {
padding: 5px; padding: 5px;
} }
hr {
border: none;
border-top: 1px dashed var(--yellow);
}

View file

@ -8,13 +8,16 @@
<link rel="stylesheet" href="css/icons.css"> <link rel="stylesheet" href="css/icons.css">
</head> </head>
<body> <body>
<header>TSAIBAR</header> <header>
<img src="media/title.gif" width="128" height="40">
</header>
<main> <main>
<section id="socials"> <section id="socials">
<h2>Socials</h2> <h2>Socials</h2>
<a href="https://chaos.social/@xoy" target="_blank" rel="noopener noreferrer me"><i class="icon mastodon"></i>@xoy@chaos.social</a><br> <a href="https://chaos.social/@xoy" target="_blank" rel="noopener noreferrer me"><i class="icon mastodon"></i>@xoy@chaos.social</a><br>
<a href="https://matrix.to/#/@iamxoy:matrix.org" target="_blank" rel="noopener noreferrer"><i class="icon matrix"></i>@iamxoy:matrix.org</a> <a href="https://matrix.to/#/@iamxoy:matrix.org" target="_blank" rel="noopener noreferrer"><i class="icon matrix"></i>@iamxoy:matrix.org</a>
</section> </section>
<hr>
<section id="identity"> <section id="identity">
<h2>Identity</h2> <h2>Identity</h2>
<table> <table>
@ -47,15 +50,40 @@
</tr> </tr>
</table> </table>
</section> </section>
<hr>
<section id="wil"> <section id="wil">
<h2>What I like</h2> <h2>What I like</h2>
<ul> <ul>
<li>Softwaredevelopment</li> <li>Software development</li>
<li>Linux</li> <li>Linux</li>
<li>Gaming</li> <li>Gaming</li>
<li>Bouldern</li> <li>Bouldern</li>
</ul> </ul>
</section> </section>
<hr>
<section id="games">
<h2>Games</h2>
<h3>Currently playing</h3>
<ul>
<li><a href="https://store.steampowered.com/app/2054970/Dragons_Dogma_2/" target="_blank">Dragon's Dogma 2</a></li>
<li><a href="https://store.steampowered.com/app/526870/Satisfactory/" target="_blank">Satisfactory</a></li>
</ul>
<h3>Pile of Shame</h3>
<ul>
<li><a href="https://store.steampowered.com/app/1933840/Moon_Mystery/" target="_blank">Moon Mystery</a></li>
<li><a href="https://store.steampowered.com/app/1817070/Marvels_SpiderMan_Remastered/" target="_blank">Marvel's Spider-Man Remastered</a></li>
<li><a href="https://store.steampowered.com/app/599140/Graveyard_Keeper/" target="_blank">Graveyard Keeper</a></li>
<li><a href="https://store.steampowered.com/app/881100/Noita/" target="_blank">Noita</a></li>
</ul>
<h3>Waiting for</h3>
<ul>
<li><a href="https://store.steampowered.com/app/1172710/Dune_Awakening/" target="_blank">Dune Awakening</a></li>
<li><a href="https://store.steampowered.com/app/2677660/Indiana_Jones_and_the_Great_Circle/" target="_blank">Indiana Jones and the Great Circle</a></li>
<li><a href="https://store.steampowered.com/app/2719750/Star_Birds/" target="_blank">Star Birds</a></li>
<li><a href="https://store.steampowered.com/app/801800/Atomfall/" target="_blank">Atomfall</a></li>
<li>The Elder Scrolls 6</li>
</ul>
</section>
</main> </main>
</body> </body>
</html> </html>

BIN
media/SpaceBackground.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

BIN
media/title.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View file

@ -7,10 +7,13 @@
<link rel="stylesheet" href="css/main.css"> <link rel="stylesheet" href="css/main.css">
</head> </head>
<body> <body>
<header>TSAIBAR</header> <header>
<img src="media/title.gif" width="128" height="40">
</header>
<main> <main>
<h1>Page Not Found</h1> <h1>Page Not Found</h1>
<p>The requested page was not found.</p> <p>The requested page was not found.</p>
<a href="index.html">Go to index</a>
</main> </main>
</body> </body>
</html> </html>