mirror of
https://github.com/planetrenox/planetrenox.com.git
synced 2026-01-13 16:18:03 +00:00
51 lines
1.2 KiB
HTML
51 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:#fff;--c2:#666;--c3:#000}
|
|
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
|
|
body{
|
|
background:var(--c1);
|
|
color:var(--c3);
|
|
font-family:monospace;
|
|
min-height:100vh;
|
|
padding:1rem
|
|
}
|
|
.container{display:flex;gap:2rem}
|
|
.sidebar{min-width:200px}
|
|
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="container">
|
|
<aside class="sidebar">
|
|
</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">> GITHUB</a>
|
|
</footer>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|