71 lines
1.8 KiB
HTML
71 lines
1.8 KiB
HTML
<!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" />
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<title>Message Alert</title>
|
|
<style>
|
|
body {
|
|
margin-top: 200px !important;
|
|
}
|
|
.alert {
|
|
display: flex;
|
|
max-width: 24rem;
|
|
margin: 0 auto;
|
|
padding: 1.5rem;
|
|
border-radius: 0.5rem;
|
|
background-color: #fff;
|
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
|
|
0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
.alert-logo-wrap {
|
|
flex-shrink: 0;
|
|
}
|
|
.alert-logo {
|
|
height: 3rem;
|
|
width: 3rem;
|
|
}
|
|
.alert-body {
|
|
margin-left: 1.5rem;
|
|
padding-top: 0.25rem;
|
|
}
|
|
.alert-title {
|
|
color: #1a202c;
|
|
font-size: 1.25rem;
|
|
line-height: 1.25;
|
|
font-weight: 500;
|
|
}
|
|
.alert-message {
|
|
color: #718096;
|
|
font-size: 1rem;
|
|
line-height: 1.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="alert">
|
|
<div class="alert-logo-wrap">
|
|
<img class="alert-logo" src="../assets/img/warning.svg" alt="alert" />
|
|
</div>
|
|
<div class="alert-body">
|
|
<h4 class="alert-title">Are You Sure?</h4>
|
|
<p class="alert-message">You are about to delete a post</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
class="flex items-center p-6 max-w-sm mx-auto bg-white rounded-xl shadow-lg space-x-4"
|
|
>
|
|
<div>
|
|
<img class="h-12 w-12" src="../assets/img/warning.svg" alt="alert" />
|
|
</div>
|
|
<div>
|
|
<div class="text-xl font-medium text-black">Are You Sure?</div>
|
|
<p class="text-slate-500">You are about to delete a post</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|