[Add more gifs]

This commit is contained in:
xoy 2024-11-04 00:32:37 +01:00
parent bac14082e9
commit b63e5fee78
7 changed files with 156 additions and 111 deletions

View file

@ -28,13 +28,24 @@ header {
border-top-right-radius: 100px; border-top-right-radius: 100px;
} }
header > img { footer {
background-color: var(--yellow);
padding: 20px 0 0 0;
border-bottom-left-radius: 100px;
border-bottom-right-radius: 100px;
}
header > img, footer > img {
width: 512px; width: 512px;
height: auto; height: auto;
display: block; display: block;
margin: auto; margin: auto;
} }
footer > img {
width: 128px;
}
@media only screen and (max-width: 512px) { @media only screen and (max-width: 512px) {
header > img { header > img {
width: 90vw; width: 90vw;
@ -48,15 +59,21 @@ main {
padding: 42px; padding: 42px;
font-family: 'Courier New', monospace; font-family: 'Courier New', monospace;
background-color: black; background-color: black;
border-bottom-left-radius: 100px;
border-bottom-right-radius: 100px;
} }
header, main { header, main, footer {
max-width: 1024px; max-width: 1024px;
margin: auto; margin: auto;
} }
main table th {
text-align: left;
}
main table th[colspan="2"] {
text-align: center;
}
main a, main a:visited { main a, main a:visited {
color: var(--green); color: var(--green);
text-decoration: none; text-decoration: none;
@ -71,7 +88,18 @@ main address {
justify-content: space-around; justify-content: space-around;
} }
main section#wil ul { main section div.section-row {
display: flex;
justify-content: space-between;
}
main section div.section-row img.section-icon {
width: 128px;
height: 128px;
margin: auto 0 auto 0;
}
main section ul {
list-style-type: ''; list-style-type: '';
} }
@ -83,10 +111,6 @@ main section#wil ul li:nth-child(even)::before {
content: '💛 '; content: '💛 ';
} }
main section#games ul {
list-style-type: '';
}
main section#games ul li::before { main section#games ul li::before {
content: '🟧 '; content: '🟧 ';
} }

View file

@ -14,27 +14,37 @@
<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> <div class="section-row">
<a href="https://matrix.to/#/@iamxoy:matrix.org" target="_blank" rel="noopener noreferrer"><i class="icon matrix"></i>@iamxoy:matrix.org</a> <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>
<img class="section-icon" src="media/social.gif" width="64" height="64">
</div>
</section> </section>
<hr> <hr>
<section id="identity"> <section id="identity">
<h2>Identity</h2> <h2>Identity</h2>
<div class="section-row">
<table> <table>
<tr> <tr>
<td>Name</td> <th>Name</th>
<td>xoy</td> <td>xoy</td>
</tr> </tr>
<tr> <tr>
<td>Age</td> <th>Age</th>
<td>23</td> <td>23</td>
</tr> </tr>
<tr> <tr>
<td>Gender</td> <th>Gender</th>
<td>non-binary</td> <td>non-binary</td>
</tr> </tr>
<tr> <tr>
<td>Sexuality</td> <th>Sexuality</th>
<td>pansexual</td> <td>pansexual</td>
</tr> </tr>
<tr> <tr>
@ -49,16 +59,21 @@
<td>dey/denen</td> <td>dey/denen</td>
</tr> </tr>
</table> </table>
<img class="section-icon" src="media/identity.gif" width="64" height="64">
</div>
</section> </section>
<hr> <hr>
<section id="wil"> <section id="wil">
<h2>What I like</h2> <h2>What I like</h2>
<div class="section-row">
<ul> <ul>
<li>Software development</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>
<img class="section-icon" src="media/hearts.gif" width="64" height="64">
</div>
</section> </section>
<hr> <hr>
<section id="games"> <section id="games">
@ -85,5 +100,8 @@
</ul> </ul>
</section> </section>
</main> </main>
<footer>
<img src="media/xoy.gif" width="64" height="64">
</footer>
</body> </body>
</html> </html>

BIN
media/hearts.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
media/identity.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
media/social.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

BIN
media/xoy.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

View file

@ -15,5 +15,8 @@
<p>The requested page was not found.</p> <p>The requested page was not found.</p>
<a href="index.html">Go to index</a> <a href="index.html">Go to index</a>
</main> </main>
<footer>
<img src="media/xoy.gif" width="64" height="64">
</footer>
</body> </body>
</html> </html>