-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 3.05 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 3.05 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- ########## PRECONNECT ######### -->
<link rel="preconnect" href="https://ajax.googleapis.com" />
<link rel="preconnect" href="https://cdnjs.cloudflare.com" />
<link rel="preconnect" href="https://malte9799.github.io" />
<!-- ########## LIBRARIES ########## -->
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<!-- Prism.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-okaidia.min.css" integrity="sha512-mIs9kKbaw6JZFfSuo+MovjU+Ntggfoj8RwAmJbVXQ5mkAX5LlgETQEweFPI18humSPHymTb5iikEOKWF7I8ncQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Balloon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/balloon-css/1.2.0/balloon.min.css" integrity="sha512-6jHrqOB5TcbWsW52kWP9TTx06FHzpj7eTOnuxQrKaqSvpcML2HTDR2/wWWPOh/YvcQQBGdomHL/x+V1Hn+AWCA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- ############ FONTS ############ -->
<link rel="stylesheet" href="https://malte9799.github.io/cdn/fonts/CeraRoundPro.css" />
<!-- ############ ASSETS ########### -->
<link rel="stylesheet" href="/assets/styles/main.css" />
<script src="/scripts/index.js" type="module"></script>
</head>
<body style="background-color: #111827">
<div id="menu" class="fixed left-16 z-inf h-full w-80 bg-slate-800 transition-all duration-500 ease-in-out -translate-x-full [&.expanded]:left-0 [&.expanded]:translate-x-0">
<svg class="absolute right-16 top-0 h-full w-16 translate-x-full" version="1.1" id="blob" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path class="h-full fill-slate-800" id="blob-path" />
</svg>
<div id="hamburger" class="absolute right-5 -mt-2 flex h-5 w-6 flex-col justify-between transition-all ease-out translate-y-7">
<div class="h-1 w-full rounded-full bg-white"></div>
<div class="h-1 w-full rounded-full bg-white"></div>
<div class="h-1 w-full rounded-full bg-white"></div>
</div>
<div id="menu-inner" class="relative h-full w-full">
<ul class="absolute top-3 ml-8 w-4/5 list-none p-0 text-white child:my-8">
<li><a link="index">Index</a></li>
<li><a link="icons">Icons</a></li>
</ul>
</div>
</div>
<div id="cursor" class="cursor fixed z-inf mix-blend-difference">
<div id="cursor-circle" class="cursor cursor-circle pointer-events-none fixed h-5 w-5 rounded-full border"></div>
<div id="cursor-dot" class="cursor cursor-dot pointer-events-none fixed h-1 w-1 rounded-full bg-white"></div>
</div>
</body>
</html>