forked from TailGrids/tailwind-ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal.html
126 lines (124 loc) · 3.23 KB
/
modal.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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 | TailGrids</title>
<link
rel="shortcut icon"
href="assets/images/favicon.svg"
type="image/x-icon"
/>
<link rel="stylesheet" href="assets/css/tailwind.css" />
<script defer src="assets/js/alpine.min.js"></script>
</head>
<body>
<!-- ====== Modal Section Start -->
<section x-data="{modalOpen: false}">
<div class="container py-20">
<button
@click="modalOpen = true"
class="
py-3
px-6
rounded-full
bg-primary
text-white
font-medium
text-base
"
>
Open Modal
</button>
</div>
<div
x-show="modalOpen"
x-transition
class="
bg-black bg-opacity-90
fixed
top-0
left-0
w-full
min-h-screen
h-full
flex
items-center
justify-center
px-4
py-5
"
>
<div
@click.outside="modalOpen = false"
class="
w-full
max-w-[570px]
rounded-[20px]
bg-white
py-12
px-8
md:py-[60px] md:px-[70px]
text-center
"
>
<h3 class="font-bold text-dark text-xl sm:text-2xl pb-2">
Your Message Sent Successfully
</h3>
<span
class="inline-block bg-primary h-1 w-[90px] mx-auto rounded mb-6"
></span>
<p class="text-base text-body-color leading-relaxed mb-10">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since
</p>
<div class="flex flex-wrap -mx-3">
<div class="w-1/2 px-3">
<button
@click="modalOpen = false"
class="
block
text-center
w-full
p-3
text-base
font-medium
rounded-lg
text-dark
border border-[#E9EDF9]
hover:bg-red-600 hover:text-white hover:border-red-600
transition
"
>
Cancel
</button>
</div>
<div class="w-1/2 px-3">
<button
class="
block
text-center
w-full
p-3
text-base
font-medium
rounded-lg
bg-primary
text-white
border border-primary
hover:bg-opacity-90
transition
"
>
View Details
</button>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Modal Section End -->
</body>
</html>