-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (111 loc) · 3.76 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notion Clone</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
</head>
<body class="flex flex-col">
<header class="flex justify-between p-6 text-gray-400">
<div class="flex items-center justify-center gap-8">
<span class="material-symbols-outlined"
>keyboard_double_arrow_right</span
>
<ul class="flex items-center justify-center gap-4">
<li class="flex items-center gap-2">
<span class="material-symbols-outlined">menu_book</span>
<span class="underline">Main</span>
</li>
<li>/</li>
<li>Getting started</li>
<li>/</li>
<li>Front-end developer test proje...</li>
</ul>
</div>
<div class="flex items-center justify-center">
<ul class="flex gap-6">
<li class="flex items-center justify-center gap-2">
<span class="material-symbols-outlined">lock</span>
<span>Editing</span>
</li>
<li>|</li>
<li
class="flex items-center justify-center gap-2 font-bold text-blue-700"
>
<span>Publish Space</span>
<span class="material-symbols-outlined">expand_more</span>
</li>
</ul>
</div>
</header>
<section class="wrapper">
<div
class="flex items-center justify-between p-2 rounded-md text-gray-400 border"
>
<div>
<ul class="flex items-center gap-4">
<li class="bg-green-200 rounded-md p-2 font-bold">P</li>
<li>|</li>
<li class="flex items-center gap-1">
<span class="material-symbols-outlined">timer</span>
<span>0min</span>
</li>
<li>|</li>
<li class="flex items-center">
<span class="material-symbols-outlined">account_circle</span>
</li>
<li>|</li>
<li class="flex items-center gap-1">
<span class="material-symbols-outlined">south_west</span>
<span>0</span>
</li>
</ul>
</div>
<div>
<ul class="flex items-center gap-4">
<li>
<span class="material-symbols-outlined"> task_alt </span>
</li>
<li class="text-green-500">
<span class="material-symbols-outlined">cloud</span>
</li>
<li>
<span class="material-symbols-outlined">more_vert</span>
</li>
</ul>
</div>
</div>
</section>
<section class="grow-0">
<div class="wrapper">
<h1 class="text-4xl font-bold border-b-[1px] border-gray-400 py-4 my-4">
Front-end developer test project
</h1>
<p>
Your goal is to make a page that look like this one, and has the
ability to create H1 text text simply by typing / then 1, then typing
text, and hitting enter.
</p>
</div>
</section>
<section
id="editor"
class="grow my-4 min-h-96 max-h-full wrapper cursor-text"
>
<div id="app" class="min-w-full min-h-full flex flex-col"></div>
</section>
<footer>
<div
class="fixed bottom-6 right-6 rounded-md bg-gray-300 h-8 w-8 flex justify-center items-center"
>
<span class="material-symbols-outlined opacity-55">help</span>
</div>
</footer>
<script type="module" src="/main.js"></script>
</body>
</html>