JSFiddle - React, Tailwind, and code Playground
by avgaltsev
HTML
<div class="popup" style="margin: 20px;">
<h2>Привет!</h2>
<p class="last">Я – всплывающее окно.</p>
</div>
CSS
body {
font-family: tahoma, arial, sans-serif;
font-size: 12px;
}
h2 {
font-size: 18px;
}
h2, p {
margin-bottom: 10px;
line-height: 150%;
}
h2.last, p.last {
margin-bottom: 0;
}
.popup {
position: absolute;
max-width: 400px;
border: 1px solid #71653a;
border-radius: 5px;
padding: 20px;
color: #71653a;
background-color: #fff1be;
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}