JSFiddle - React, Tailwind, and code Playground

by Kirubel Girma

HTML

<div class="con">
  <div class="mdlcv">
  </div>
  <div class="modl">
    <div class="hdr">
      <h1>Coming Soon!</h1>
    </div>
    <div class="pdr">
      <p>TUO offers an online collaboration network that is designed to help business leaders connect and share their experience.</p>
      <div class="bt_close">X</div>
    </div>
  </div>
</div>

CSS

* {
  margin: 0;
}

.mdlcv {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  opacity: .7;
}

.modl {
  max-width: 45em;
  max-height: 28em;
  background: #dd993c;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 1em;
  padding: 1em;
  
  drop-sh
}

.bt_close{
  position: absolute;
  height: 2em;
  width: 2em;
  top: 1em;
  right: 1em;
  background-color: red;
  border-radius: 50em;
  display: flex;
  align-items: center;
  justify-content: center;
}