JSFiddle - React, Tailwind, and code Playground

by kamuran

HTML

<div class="logContainer">
       <div id="loggedUser"> <p> Logged in as <b><u>Dodo</u></b></p></div>
                    <div><button id="logoutButton"><a href="#"><b>Log Out</b></a></button></div>
                </div>

CSS

#logoutButton {
   
}
/*=================
    CSS written by Dorienne Grech
    Copyright 2014 
    written For my Thesis website
      
    
    */

/* Color Swatches
   
    Background: f1f1f1;
    Grey bg swatch: 2a2d30;
     
    
    
    
    */


body
{
    background: #f1f1f1 url(../img/bgnoise.png);
    font-family: Arial;
}

.wrapper
{
    width: 966px;
    margin:  0 auto;
    position: relative;
    border: 1px solid blue;
}

/* Header CSS
   =========== */

#header
{
    height: 120px;
    position: relative;
    z-index: 10;
    background: #2a2d30 url(../img/header-glow.png) top center no-repeat;
}

#logo
{
    position: relative;
    top: -10px;
    left: 10px;
}

/* Logging Design
   ============== */
.logContainer
{
    line-height: 1;
    position: relative;
    float: right;
    top: 25px;
    right: 100px;
    
}

#loggedUser 
{
    color: #f1f1f1;
    font-size: 12px;
}

#logoutButton {
    line-height: 1px;
    width: 100px;
    height: 25px;
    float: right;
    text-transform: uppercase;
    


    border-radius: 12px 12px 12px 12px;
    -moz-border-radius: 12px 12px 12px 12px;
    -webkit-border-radius: 12px 12px 12px 12px;
     border-style: none;

    -webkit-box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.75);
    
    background: rgba(45,46,46,1);
    background: -moz-linear-gradient(top, rgba(45,46,46,1) 0%, rgba(110,110,110,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(45,46,46,1)), color-stop(100%, rgba(110,110,110,1)));
    background: -webkit-linear-gradient(top, rgba(45,46,46,1) 0%, rgba(110,110,110,1) 100%);
    background: -o-linear-gradient(top, rgba(45,46,46,1) 0%, rgba(110,110,110,1) 100%);
    background: -ms-linear-gradient(top, rgba(45,46,46,1) 0%, rgba(110,110,110,1) 100%);
    background: linear-gradient(to bottom, rgba(45,46,46,1) 0%, rgba(110,110,110,1) 100%);
    filter:...