JSFiddle - React, Tailwind, and code Playground
by babich_ss
HTML
<body>
<div id="alertWindow">
<div>
<p>This page contains information of erotic character.
If You are not 18 — <a href="http://www.seaman.lv/latvia" target="_top">leave this site!</a> </p>
<p class='message-exit'>| <a href="">Enter</a> | </p>
</div>
</div>
CSS
#alertWindow{
background: rgba(0, 0, 0, 0.75);
border-radius: 10px;
color: white;
width: 280px;
padding: 20px;
font-family: Arial;
font-size: 12px;
}
a{
color:#1B8EE0;
}
.message-exit{
width: 100%;
text-align: center;
margin-top: 10px;
font-size: 14px;
font-weight: bold;
}
JavaScript
var alertWindow = document.getElementById("alertWindow");