72 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
 | 
						|
	<title>home</title>
 | 
						|
	<meta charset="utf-8">
 | 
						|
	<meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
 | 
						|
	<link rel="stylesheet" type="text/css" href="style.css">
 | 
						|
    <link href="favicon.png" rel="shortcut icon" type="image/x-icon" />
 | 
						|
	<script src="dome.js" defer></script>
 | 
						|
 | 
						|
	<style type="text/css">
 | 
						|
		body > div#main > span > div#static_links {
 | 
						|
			height: 30px;
 | 
						|
		}
 | 
						|
		body > div#main > span > form > input {
 | 
						|
			border: none;
 | 
						|
			height: 50px;
 | 
						|
		}
 | 
						|
		div#links > div.section {
 | 
						|
			display: inline-block;
 | 
						|
			vertical-align: top;
 | 
						|
			height: 200px;
 | 
						|
			width: 300px;
 | 
						|
			margin: 2px;
 | 
						|
		}
 | 
						|
		div#links > div.section > div {
 | 
						|
			padding: 15px;
 | 
						|
		}
 | 
						|
		div#wiper {
 | 
						|
			display: block;
 | 
						|
			position: fixed;
 | 
						|
			width: 100vw;
 | 
						|
			height: 100vh;
 | 
						|
			background-color: #121B18;
 | 
						|
			opacity: 1;
 | 
						|
			z-index: 100;
 | 
						|
			transition: .1s opacity .1s, .1s z-index .1s;
 | 
						|
		}
 | 
						|
		html, body {
 | 
						|
			margin: 0;
 | 
						|
			background-color: #121B18;
 | 
						|
		}
 | 
						|
	</style>
 | 
						|
 | 
						|
</head>
 | 
						|
<body onresize="matchLinks()" onunload="">
 | 
						|
 | 
						|
	<div id="wiper"></div>
 | 
						|
 | 
						|
	<div id="main" style="max-width: 912px;">
 | 
						|
		<span style="display: block">
 | 
						|
			<div id="static_links">
 | 
						|
				<span id="clock">
 | 
						|
					<!-- dome.js: displayDate() fills this element -->
 | 
						|
				</span>
 | 
						|
				<a href="mailto:">Compose E-Mail</a>
 | 
						|
				<a href="steam:">Open Steam</a>
 | 
						|
			</div>
 | 
						|
			<form method="GET" id="action">
 | 
						|
				<input type="text" oninput="matchLinks(this.value)" autofocus autocomplete="off">
 | 
						|
			</form>
 | 
						|
			<div id="links">
 | 
						|
				<!-- dome.js: matchLinks() fills this element -->
 | 
						|
			</div>
 | 
						|
		</span>
 | 
						|
	</div>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |