-
Notifications
You must be signed in to change notification settings - Fork 3
/
modal-sidebar.html
68 lines (67 loc) · 4.26 KB
/
modal-sidebar.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modal Sidebar</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="//unpkg.com/alpinejs" defer></script>
</head>
<style>
[x-cloak] {
display: none !important;
}
</style>
<body class="bg-gray-200 text-gray-800">
<header class="bg-white shadow-md">
<nav x-cloak x-data="{open: true}" class="container mx-auto px-4 flex item-center justify-between py-4">
<div class="flex">
<button @click="open = true" class="bg-gray-100 hover:bg-gray-200 transition ease-out duration-200 rounded p-2">
<svg width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path fill="#494c4e" d="M23 6H1c-.552 0-1-.448-1-1s.448-1 1-1h22c.553 0 1 .448 1 1s-.447 1-1 1zM23 13H1c-.552 0-1-.447-1-1s.448-1 1-1h22c.553 0 1 .447 1 1s-.447 1-1 1zM23 20H1c-.552 0-1-.447-1-1s.448-1 1-1h22c.553 0 1 .447 1 1s-.447 1-1 1z" />
</svg>
</button>
</div>
<!-- Sidebar -->
<div x-show="open" @click.away="open = false" @keydown.window.escape="open = false"
x-transition:enter="transition ease-out duration-200 -ml-64"
x-transition:enter-end="transform translate-x-64"
x-transition:leave="transition ease-out duration-200"
x-transition:leave-end="transform -translate-x-64"
class="absolute top-0 left-0 bg-white border border-right h-full w-72 ">
<div class="flex justify-end m-3">
<button @click="open = false" class="text-2xl mr-3 mt-1"><svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="mt-10 px-6">
<a class="hover:text-gray-800 hover:bg-gray-100 flex items-center p-2 my-6 transition-colors duration-200 text-gray-600 rounded-lg" href="#">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" />
</svg>
<span class="mx-4 text-lg font-normal">
Users
</span>
<span class="flex-grow text-right">
</span>
</a>
<a class="hover:text-gray-800 hover:bg-gray-100 flex items-center p-2 my-6 transition-colors duration-200 text-gray-600 rounded-lg" href="#">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
<span class="mx-4 text-lg font-normal">
Settings
</span>
<span class="flex-grow text-right">
</span>
</a>
</div>
</div>
<!-- End Sidebar -->
</nav>
</header>
</body>
</html>