Files
planetrenox.com/index.html

71 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Planet Renox</title>
<style>
:root{--c1:#000;--c2:#666;--c3:#fff}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
@keyframes blink{50%{opacity:0}}
body{
background:var(--c1);
color:var(--c3);
font-family:monospace;
min-height:100vh;
padding:1rem
}
.logo{
position:fixed;
top:1rem;
left:1rem;
font-size:1rem;
color:var(--c3);
z-index:10
}
.logo span{animation:blink 1s step-end infinite}
.container{display:flex;gap:2rem;padding-top:3rem}
.sidebar{min-width:200px}
.sidebar a{
display:block;
color:var(--c3);
text-decoration:none;
padding:.5rem 0
}
.sidebar a:hover{background:var(--c2);color:var(--c1)}
main{flex:1}
h2{margin-bottom:1rem}
.widget-wrapper{margin-bottom:2rem}
iframe{width:100%;max-width:646px;height:190px;border:0}
footer{margin-top:2rem}
footer a{color:var(--c3);text-decoration:none}
footer a:hover{background:var(--c2);color:var(--c1)}
::selection{background:var(--c2);color:var(--c1)}
@media(max-width:768px){
.container{flex-direction:column}
.sidebar{min-width:auto}
}
</style>
</head>
<body>
<div class="logo">planetrenox<span>_</span></div>
<div class="container">
<aside class="sidebar">
<a href="https://lynchmark.com" target="_blank" rel="noopener noreferrer">Lynchmark</a>
<a href="https://github.com/planetrenox/inzerosight" target="_blank" rel="noopener noreferrer">inzerosight</a>
</aside>
<main>
<section>
<h2>Games</h2>
<div class="widget-wrapper">
<iframe src="https://store.steampowered.com/widget/1745790/"></iframe>
</div>
</section>
<footer>
<a href="https://github.com/planetrenox" target="_blank" rel="noopener noreferrer">&gt; GITHUB</a>
</footer>
</main>
</div>
</body>
</html>