mirror of
https://github.com/planetrenox/planetrenox.com.git
synced 2026-01-13 16:18:03 +00:00
44 lines
1.2 KiB
HTML
44 lines
1.2 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:#0ff;--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;
|
|
display:flex;
|
|
flex-direction:column;
|
|
align-items:center;
|
|
justify-content:center;
|
|
min-height:100vh;
|
|
text-align:center;
|
|
padding:1rem
|
|
}
|
|
h1{font-size:clamp(2rem,8vw,4rem);text-transform:lowercase;color:var(--c2)}
|
|
h1 span{animation:blink 1s step-end infinite}
|
|
main{display:flex;flex-direction:column;align-items:center;gap:2rem}
|
|
.widget-wrapper{max-width:100%}
|
|
footer{margin-top:2rem}
|
|
a{color:var(--c3);text-decoration:none}
|
|
a:hover{background:var(--c2);color:var(--c1)}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>planetrenox<span>_</span></h1>
|
|
<div class="widget-wrapper">
|
|
<iframe src="https://store.steampowered.com/widget/1745790/" frameborder="0" width="646" height="190"></iframe>
|
|
</div>
|
|
<footer>
|
|
<a href="https://github.com/planetrenox" target="_blank" rel="noopener noreferrer">> GITHUB</a>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|