JSFiddle - React, Tailwind, and code Playground

HTML

<div id="console">
    <div id="window">
        Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text goes here Console text...

CSS

body{
    font-size:10pt;
    font-family:tahoma;
}
#console{
    background:#000;
    height:300px;
    width:100%;
    top:0px;
    left:0px;
    position:fixed;
    z-index:999;
    display:none;
    color:#fff;
    text-align:left;
}
#window{
    width:95%;
    margin:5px auto 5px auto;
    background:#999;
    height:240px;
    padding:8px;
    color:#000;
    font-size:9pt;
    font-family:courier;
    overflow:scroll;
}

JavaScript

$(window).keypress(function(e) {
    if (e.which == 96 || e.which == 126) {
        $('#console').slideToggle();
    }
});