-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (22 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<title>FDDN-0 Games</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.9.0/tachyons.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.min.js" type="text/javascript"></script>
</head>
<body class="sans-serif">
<div class="flex">
<div class="vh-100 overflow-x-hidden overflow-y-auto flex flex-column black bg-white br b--light-silver" style="width: 220px">
<p class="ph3 ttu tracked b silver">FDDN-0 Games</p>
<div id="repos" class="list pa3 measure center flex-auto w-100 overflow-y-auto" style="-webkit-overflow-scrolling: touch"></div>
<img src="logo.jpg" width="210" />
</div>
<div class="flex-auto vh-100 overflow-y-hidden bg-black white">
<iframe id="iframe" class="bg bg-white w-100 h-100" frameborder="0"></iframe>
</div>
</div>
<script src="main.js" type="text/javascript"></script>
</body>
</html>