-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (88 loc) · 3.55 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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" defer src="Scripts/index.js"></script>
<script type="text/javascript" defer src="Scripts/about.js"></script>
<script type="text/javascript" defer src="Scripts/core.js"></script>
<link rel="stylesheet" type="text/css" href="Styles/Compiled/base.css">
<title>Homepage</title>
</head>
<body>
<div id="loading-page">
<div>
<span>LOADING</span>
<div>
<div id="loading-progress"></div>
</div>
</div>
</div>
<div data-location="index" id="content">
<div class="h-full top-container w-full bg-black flex">
<!-- Navigation Bar -->
<aside class="w-1/5 h-full grid border-white border-r">
<div class="h-4/5 w-4/5 grid place-self-center grid-rows-[1fr_4fr_1fr]">
<div class="flex w-full h-full">
<div class="w-[50%] h-full grid">
<img class="hover:opacity-50 [transition:.15s_opacity] cursor-pointer place-self-center object-contain h-1/2 w-1/2" src="Assets/light.png">
</div>
<div class="w-[50%] h-full grid">
<img class="hover:opacity-50 [transition:.15s_opacity] cursor-pointer place-self-center object-contain h-1/2 w-1/2" src="Assets/dark.png">
</div>
</div>
<div class="flex flex-col place-self-center text-center text-2xl">
<span>Welcome</span>
<span>Who am I?</span>
</div>
<div class="flex justify-center items-center">
<a target="_blank" href="https://github.com/syhsblfthr/nsni1.github.io" class="w-2/5 h-2/5 flex justify-center">
<img class="cursor-pointer hover:opacity-50 [transition:.15s_opacity]" src="Assets/github-mark/github-mark-white.svg">
</a>
</div>
</div>
</aside>
<!-- Actual Content -->
<div id="acontent" class="overflow-y-scroll h-full w-full [scrollbar-color:#FFF_transparent] overflow-y-hidden">
<div class="h-full w-full grid" id="home" data-intersectionRatio="0.5" data-intersectionActions="0" data-navigationIndex="0" data-intersectionOnce='0'>
<div class="h-full w-11/12 flex place-self-center items-center justify-between">
<div id="home-text" class="flex flex-col">
<span class="text-4xl leading-relaxed font-bold">Welcome!</span>
<span class="text-3xl">My name is Syahsabili Fithra Nasution</span>
</div>
<div id="home-img" class="w-2/5 h-4/5 relative">
<img class="rounded max-w-full max-h-full absolute" src="Assets/Me-ed.png">
</div>
</div>
</div>
<div class="h-full w-full grid intersection-observe" id="who" data-intersectionRatio="0.5" data-intersectionActions="01" data-navigationIndex="1" data-intersectionOnce='0'>
<div class="w-4/5 h-4/5 place-self-center grid place-items-center grid-rows-[1fr_2fr_1fr] opacity-0 translate-y-[5%] [transition:1s_transform,1s_opacity]">
<div class="text-6xl font-bold">
<span>WHO AM I?</span>
</div>
<div class="text-5xl text-center leading-relaxed p-5 bg-neutral-900 rounded-3xl">
<span>I am a man of many interest.</span>
<br>
<span>One of them is <span id="interest">Computer Science</span>.</span>
</div>
<div class="place-self-end text-1xl">
<button id="moreaboutme" class="text-neutral-600 hover:text-neutral-300 [transition:.1s_color_ease-out]">more about me.</button>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div>
<div data-pageIndex="index" class="active">
<span>HOME</span>
</div>
<div data-pageIndex="about">
<span>ABOUT</span>
</div>
<div data-pageIndex="asadasdadasd">
<span>MEDIA</span>
</div>
</div>
</footer>
</body>
</html>