60 lines
2.3 KiB
HTML
60 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>MiniRT Preview</title>
|
|
<link href="/css/style.css" rel="stylesheet">
|
|
<link href="/css/tailwind.css" rel="stylesheet">
|
|
</head>
|
|
<style>
|
|
.minirt-canvas-background {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 9999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: rgba(32, 32, 32, 0.5);
|
|
}
|
|
|
|
.minirt-canvas {
|
|
height: 80dvh;
|
|
width: 80dvw;
|
|
color: white;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
</style>
|
|
<body>
|
|
<div class="flex flex-col w-full">
|
|
<header class="flex flex-col h-48 w-screen text-[#FFF6DA]" style="background-color: rgb(169, 74, 74);">
|
|
<h1 class="p-8 grow place-content-center text-center text-5xl">My Personal Website</h1>
|
|
<div class="w-screen flex p-1 justify-center px-30 gap-4" style="background-color: #889E73">
|
|
<a class="p-4 hover:bg-[#aa9E73ff] rounded-md" href="/">Home</a>
|
|
<a class="p-4 hover:bg-[#aa9E73ff] rounded-md" href="/html/minishell.html">Minishell</a>
|
|
<a class="p-4 hover:bg-[#aa9E73ff] rounded-md" href="/html/minirt.html">MiniRT</a>
|
|
<a class="p-4 hover:bg-[#aa9E73ff] rounded-md" href="/html/emiku.html">emiku</a>
|
|
</div>
|
|
</header>
|
|
<div class="flex flex-col gap-y-6 bg-neutral-200/70 w-[60%] ml-[10%] mr-auto px-16 py-8">
|
|
<h2 class="text-4xl font-bold text-gray-800">The Shell</h2>
|
|
<div class="space-y-2">
|
|
<p class="leading-relaxed text-gray-700 max-w-prose">
|
|
</p>
|
|
<div style="display: none" class="minirt-canvas-background">
|
|
<div class="minirt-canvas">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|