[Page update with text and visuals]
This commit is contained in:
parent
a07c870cc0
commit
bac14082e9
5 changed files with 113 additions and 42 deletions
114
css/main.css
114
css/main.css
|
@ -1,73 +1,113 @@
|
|||
:root {
|
||||
--black: #000501;
|
||||
--white: #F9F9F9;
|
||||
--yellow: #EFEA5A;
|
||||
--green: #16DB93;
|
||||
--black: #000501;
|
||||
--white: #F9F9F9;
|
||||
--yellow: #EFEA5A;
|
||||
--green: #16DB93;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
overflow-x: hidden;
|
||||
background-color: var(--black);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
overflow-x: hidden;
|
||||
background-color: var(--black);
|
||||
background-image: url(../media/SpaceBackground.png);
|
||||
background-size: 512px 512px;
|
||||
background-repeat: repeat;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: var(--yellow);
|
||||
color: var(--black);
|
||||
font-size: 90px;
|
||||
padding: 20px 0 20px 0;
|
||||
text-align: center;
|
||||
font-weight: 800;
|
||||
position: relative;
|
||||
font-family: 'Brush Script MT', cursive;
|
||||
background-color: var(--yellow);
|
||||
padding: 0 0 20px 0;
|
||||
border-top-left-radius: 100px;
|
||||
border-top-right-radius: 100px;
|
||||
}
|
||||
|
||||
header > img {
|
||||
width: 512px;
|
||||
height: auto;
|
||||
display: block;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 512px) {
|
||||
header > img {
|
||||
width: 90vw;
|
||||
}
|
||||
}
|
||||
|
||||
main {
|
||||
border: 5px solid var(--yellow);
|
||||
border-top: none;
|
||||
color: var(--white);
|
||||
padding: 42px;
|
||||
font-family: 'Courier New', monospace;
|
||||
border: 5px solid var(--yellow);
|
||||
border-top: none;
|
||||
color: var(--white);
|
||||
padding: 42px;
|
||||
font-family: 'Courier New', monospace;
|
||||
background-color: black;
|
||||
border-bottom-left-radius: 100px;
|
||||
border-bottom-right-radius: 100px;
|
||||
}
|
||||
|
||||
header, main {
|
||||
max-width: 1024px;
|
||||
margin: auto;
|
||||
max-width: 1024px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
main a, main a:visited {
|
||||
color: var(--green);
|
||||
text-decoration: none;
|
||||
color: var(--green);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
main a:hover {
|
||||
border-bottom: 2px solid var(--green);
|
||||
border-bottom: 2px solid var(--green);
|
||||
}
|
||||
|
||||
main address {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
main ul {
|
||||
list-style-type: '🤍 ';
|
||||
main section#wil ul {
|
||||
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 {
|
||||
padding: 2px 0 2px 0;
|
||||
padding: 2px 0 2px 0;
|
||||
}
|
||||
|
||||
main section#socials {
|
||||
line-height: 200%;
|
||||
line-height: 200%;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 5px;
|
||||
}
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
border-top: 1px dashed var(--yellow);
|
||||
}
|
||||
|
|
34
index.html
34
index.html
|
@ -8,13 +8,16 @@
|
|||
<link rel="stylesheet" href="css/icons.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>TSAIBAR</header>
|
||||
<header>
|
||||
<img src="media/title.gif" width="128" height="40">
|
||||
</header>
|
||||
<main>
|
||||
<section id="socials">
|
||||
<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://matrix.to/#/@iamxoy:matrix.org" target="_blank" rel="noopener noreferrer"><i class="icon matrix"></i>@iamxoy:matrix.org</a>
|
||||
</section>
|
||||
<hr>
|
||||
<section id="identity">
|
||||
<h2>Identity</h2>
|
||||
<table>
|
||||
|
@ -47,15 +50,40 @@
|
|||
</tr>
|
||||
</table>
|
||||
</section>
|
||||
<hr>
|
||||
<section id="wil">
|
||||
<h2>What I like</h2>
|
||||
<ul>
|
||||
<li>Softwaredevelopment</li>
|
||||
<li>Software development</li>
|
||||
<li>Linux</li>
|
||||
<li>Gaming</li>
|
||||
<li>Bouldern</li>
|
||||
</ul>
|
||||
</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>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
BIN
media/SpaceBackground.png
Normal file
BIN
media/SpaceBackground.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
BIN
media/title.gif
Normal file
BIN
media/title.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 61 KiB |
|
@ -7,10 +7,13 @@
|
|||
<link rel="stylesheet" href="css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>TSAIBAR</header>
|
||||
<header>
|
||||
<img src="media/title.gif" width="128" height="40">
|
||||
</header>
|
||||
<main>
|
||||
<h1>Page Not Found</h1>
|
||||
<p>The requested page was not found.</p>
|
||||
<a href="index.html">Go to index</a>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue