JSFiddle - React, Tailwind, and code Playground
HTML
<span class="user_minibar">Has iniciado sesión como: "<?php echo 'NOMBRE_ADMIN'; ?>" (<a href="#">Cerrar sesión</a>)</span>
<header>
<hgroup>
<h1>Matrices Técnicas</h1>
<h2>Lista de pedidos</h2>
</hgroup>
</header>
<article>
<table>
<tr>
<th>Id</th>
<th>Codigo</th>
<th>Cliente</th>
<th>Titulo</th>
<th>Detalle</th>
<th>Fecha de ingreso</th>
<th>Fecha de entrega</th>
<th>Estado del producto</th>
<th>Teléfono</th>
<th>E-mail</th>
<th style="color:white;">Acciones</th> <!-- SPECIAL ROW -->
<?php
echo output_pedidos();
?>
</table>
</article>
<footer><p>Todos los derechos reservados.</p></footer>
CSS
@import url('http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css');
*{
padding: 0;
margin: 0;
}
a:link, a:visited{
text-decoration: none;
color: white;
}
aside ul, #site_map ul{
list-style: none;
}
/********************
******** TOP ********
********************/
body{
background: #444;
font-family: arial, helvetica, sans-serif;
}
.user_minibar{
position: fixed;
width: 250px;
height: 30px;
background: rgba(255,255,255,.8);
border-bottom: 1px dotted red;
color: red;
font-size: 14px;
z-index: 1;
}
.user_minibar a:link, .user_minibar a:visited{
color: black;
text-decoration: underline;
}
header{
min-height: 50px;
min-width: 960px;
background: rgb(173, 216, 230);
}
header h1{
margin-left: 10px;
font-size: 48px;
color: rgba(0,0,0,.5);
position: relative;
text-shadow: 1px 1px 1px rgba(255,255,255,.2);
text-align: center;
}
header h2{
text-align: center;
}
#header_effect{
position: absolute;
display: block;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
#header_gradient{
color: white;
padding: 10px;
font-size: 14px;
background:-webkit-linear-gradient(rgb(173, 216, 230), transparent);
text-align: center;
}
/********************
******** MID ********
********************/
article{
padding-top: 25px;
min-height: 400px;
color: #DDD;
margin: 0 auto;
width: 960px;
}
article h3{
color: white;
}
section{
width: 660px;
float: left;
}
.col1, .col2{
float:left;
width: 50%;
margin-bottom: 50px;
}
.col1 p, .col2 p{
margin-left: 10px;
}
/********************
* Formulario (form) *
********************/
form{
font-size: 18px;
}
form .col1 p{
margin-bottom: 26px;
}
form input:focus, form textarea:focus {
outline: none;
box-shadow: 0px 0px 6px 2px #A22;
border: none;
}
form input, form textarea{
width: 50%;
margin-bottom: 20px;
padding: 5px;
-webkit-transition: background .2s, color .2s;
-moz-transition: background .2s, color .2s;
-ms-transition: background .2s, color .2s;
-o-transition:...