JSFiddle - React, Tailwind, and code Playground

by Serhat Uzuncavdar

HTML

<div class="tab-wrapper">
            <div class="tab-wrapper-top clearfix">       
                <div id="tab-wrapper-top-left" class="clearfix">
                    <div>
                        <label>Nome</label>
                        <input type="text" />
                    </div>
                    <div>
                        <label>Grau Académico</label>
                        <input type="text" />
                    </div>
                    <div>
                        <label>Profissão</label>
                        <input type="text" />
                    </div>
                </div>
                <div id="tab-wrapper-top-middle">
                    <div>Picture here</div>
                    <span>
                        <label>Data de entrada</label>
                        <input type="text" />
                    </span>
                    <span>
                        <label>Data de saída</label>
                        <input type="text" />
                    </span>
                    <span>
                        <label>Motivo da saída</label>
                        <select></select>
                    </span>
                </div>
                <div id="tab-wrapper-top-right">
                    <div>
                        <span>
                            <label>Unidade Habitacional</label>
                            <input type="text" />
                        </span>
                        <span>
                            <label>Extensão telefone</label>
                            <input type="text" />
                        </span>
                    </div>
                    <div>
                        <span>
                            <label>Tipo de contrato</label>
                            <select></select>
                        </span>
                        <span>
                            <label>Data contrato</label>
                            <input type="text" />
                ...

CSS

body {
    font-family: Calibri, Verdana;
}

#header {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 43px;
    width: 100%;
    background-image: url('images/bg-header.gif');
}

#header-in {
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -490px;
    background-image: url('images/bg-header-in.gif');
    height: 43px;
    width: 980px;
}

#menu {
    vertical-align: middle;
    line-height: 30px;
    position: absolute;
    top: 43px;
    left: 0px;
    height: 30px;
    width: 100%;
    text-align: center;
    background-image: url('images/bg-header.gif');
    -webkit-box-shadow: 0px 9px 30px 0px rgba(50, 50, 50, 0.84);
    -moz-box-shadow:    0px 9px 30px 0px rgba(50, 50, 50, 0.84);
    box-shadow:         0px 9px 30px 0px rgba(50, 50, 50, 0.84);    
}

#menu a {
    padding: 10px;
    color: #989898;
}

#menu a:hover {
    color: white;
    cursor: pointer;
}

#search-wrapper {
    position: absolute;
    top: 10px;
    left: 50px;
    width: 222px;
}

#search {
    position: absolute;
    font: 14px arial,geneva,verdana,sans-serif;
    color: #989898;
    border: 1px solid #343434;
    width: 200px;
    background-color: #343434;
    border-radius: 5px 5px 5px 5px;
}

#btn-search {
    display: inline-block;
    float: right;
    background: url('images/btn-search.gif');
    width: 18px;
    height: 18px;
}

#btn-search:hover {
    background-position: -18px 0px;
}

#results {
    padding-left: 5px;
    padding-right: 5px;
    width: 200px;
    cursor: pointer;
    position: absolute;
    top: 18px;
    font: 14px arial,geneva,verdana,sans-serif;
    color: #989898;
    border: 1px solid #343434;
    background-color: white;
    border-radius: 0px 0px 5px 5px;
    z-index: 1;
}

#results p:hover {
    background-color: #4585f3;
    color: white;
    margin-top: 5px;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(81, 168, 255, 0.75);
    -moz-box-shadow:    0px 0px 3px 0px rgba(81, 168, 255, 0.75);
    box-shadow:        ...