38 lines
766 B
PHP
38 lines
766 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<style>
|
|
.notif {
|
|
position: fixed;
|
|
top: 50px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background-color: #b2db0e1c;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
color: yellow;
|
|
padding: 12px 18px;
|
|
width: 300px;
|
|
height: 25px;
|
|
font-size: 20px;
|
|
border: 1px solid yellow;
|
|
border-radius: 8px;
|
|
opacity: 0;
|
|
transition: .3s;
|
|
z-index: 9999;
|
|
}
|
|
.notif.show {
|
|
opacity: 1;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="notif" class="notif"></div>
|
|
<script src="/js/notif.js"></script>
|
|
</body>
|
|
</html> |