-
Notifications
You must be signed in to change notification settings - Fork 1
/
5-interview-list-expert.html
92 lines (88 loc) ยท 3.13 KB
/
5-interview-list-expert.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="http://cdn.tailwindcss.com"></script>
<script src="./js/5-interview-list-expert.js"></script>
<script src="./js/nav.js"></script>
<link rel="icon" href="./img/mayI_logo.png">
<title>May-I</title>
</head>
<body>
<div id="navDiv"></div>
<div class="container mx-auto">
<div class="flex flex-wrap justify-center">
<div class="py-10 w-3/4 flex">
<div class="bg-white w-48 flex p-5 space-x-3">
<div class="flex-col justify-center">
<div class="justify-center">
<p class="text-center mb-4 font-bold">Expert</p>
<ul class="mb-8 text-sm font-medium">
<li>
<a
class="flex items-center px-7 py-3 hover:bg-indigo-50 rounded text-black border-b-2"
href="#"
>
<span contenteditable="false" id="request"
>์์ฒญ ์ธํฐ๋ทฐ</span
>
</a>
</li>
<li>
<a
class="flex items-center px-7 py-3 hover:bg-indigo-50 rounded text-black border-b-2"
href="#"
>
<span contenteditable="false" id="answered"
>์ธํฐ๋ทฐ ํํฉ</span
>
</a>
</li>
<li>
<a
class="flex items-center px-7 py-3 hover:bg-indigo-50 rounded text-black"
href="#"
>
<span contenteditable="false">๋ด ํ๋กํ</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="w-9/12 py-10">
<div
class="bg-white rounded-2xl border p-5 py-3"
id="interviewWrap1"
>
<div
class="flex text-center font-bold text-sm text-black mb-5 justify-between"
>
<p class="w-2/12">์์</p>
<p class="w-5/12">์ ๋ชฉ</p>
<p class="w-1/12">๊ธฐํ</p>
<p class="w-1/12">์งํ์ํฉ</p>
</div>
</div>
<div
class="bg-white rounded-2xl border p-5 py-3"
id="interviewWrap2"
style = "display:none"
>
<div
class="flex text-center font-bold text-sm text-black mb-5 justify-around"
>
<p class="w-3/12">์์</p>
<p class="w-8/12">์ ๋ชฉ</p>
<p class="w-1/12">์งํ์ํฉ</p>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>