JSFiddle - React, Tailwind, and code Playground

by Andrea Scanu

HTML

<br /><div align="center">
<div class="container">
    <div class="title">Download Now!</div>
    <div class="download-box">     
        http://scnu.altervista.org/downloads/download.php
        http://scnu.altervista.org/downloads/download.php
        http://scnu.altervista.org/downloads/download.php
        http://scnu.altervista.org/downloads/download.php
        http://scnu.altervista.org/downloads/download.php
        http://scnu.altervista.org/downloads/download.php
        http://scnu.altervista.org/downloads/download.php
        http://scnu.altervista.org/downloads/download.php

</div>
</div>
<br />
<div class="container">
    <div class="title">Antivirus Scan</div>
    <div class="download-box">     
        http://scnu.altervista.org/antivirus/scan.php         
        http://scnu.altervista.org/antivirus/scan.php     
        http://scnu.altervista.org/antivirus/scan.php
        http://scnu.altervista.org/antivirus/scan.php

</div>
</div>
</div>

CSS

.title {
    color: white;
    padding: 6px;
    background: rgb(190,27,27);
    background: -moz-linear-gradient(top,  rgba(190,27,27,1) 0%, rgba(190,27,27,1) 58%,     rgba(163,22,22,1) 58%, rgba(163,22,22,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(190,27,27,1)), color-stop(58%,rgba(190,27,27,1)), color-stop(58%,rgba(163,22,22,1)), color-stop(100%,rgba(163,22,22,1)));
    background: -webkit-linear-gradient(top,  rgba(190,27,27,1) 0%,rgba(190,27,27,1) 58%,rgba(163,22,22,1) 58%,rgba(163,22,22,1) 100%);
    background: -o-linear-gradient(top,  rgba(190,27,27,1) 0%,rgba(190,27,27,1) 58%,rgba(163,22,22,1) 58%,rgba(163,22,22,1) 100%);
    background: -ms-linear-gradient(top,  rgba(190,27,27,1) 0%,rgba(190,27,27,1) 58%,rgba(163,22,22,1) 58%,rgba(163,22,22,1) 100%);
    background: linear-gradient(to bottom,  rgba(190,27,27,1) 0%,rgba(190,27,27,1) 58%,rgba(163,22,22,1) 58%,rgba(163,22,22,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#be1b1b', endColorstr='#a31616',GradientType=0 );
}
@-webkit-keyframes fade {
    0% { background: rgba(0,0,0,0.5); }
    50% { background: rgba(0,0,0,0.6); }
    100% { background: rgba(0,0,0,0.5); }
}

.download-box {
    overflow: auto;
    background: rgba(0,0,0,0.5);
    -moz-box-shadow: inset 3px 3px 12px rgba(0,0,0,0.8);
    -webkit-box-shadow: inset 3px 3px 12px rgba(0,0,0,0.8);
    box-shadow: inset 3px 3px 12px rgba(0,0,0,0.8);
    padding: 20px;
    color: #fff;
    text-shadow: 0px -1px 0px rgba(0,0,0,0.8);
}

.download-box:hover {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1s;
    -moz-animation-name: fade;
    -moz-animation-duration: 1s;
    -o-animation-name: fade;
    -o-animation-d
        duration: 1s;
}
.container {   
    text-align: center;
    height: auto;
    overflow: auto;
    max-height: 260px;
    width: auto;
    max-width: 400px;
    -webkit-border-radius: 8px;
    -webkit-border-radius: 8px;
   ...