JSFiddle - React, Tailwind, and code Playground

by Vipin Goyal

HTML

<div class="main">
        <div class="banner">
            APPS OF TEXT
        </div>
        <div class="content">
        </div>
        <div class="banner">
            PRESS BACK TO CLOSE THE APPS
        </div>
    </div>

CSS

.main{
    width: 100%;
    height:100%;
}

.content{
    display: block;
    position:relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .5;
}

.banner{
    display: block;
    text-align: center;
    font-family: sans-serif;
    font-size: xx-large;
    color: white;
    width: 100%;
    line-height: 55px;
    background-color:black;
}