/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10-jun-2020, 20:12:07
    Author     : oiero
*/

a, a:visited, a:link {
    text-decoration: none;
    color: blue;
}
a:hover {
    text-decoration: underline;
}
a.verde {
    color: #10ab3a;
}
a.verde:hover  {
    color: #0e9332;
}
a.rojo {
    color: #f35959;
}
a.rojo:hover {
    color: #d13535;
}
body, section, header, nav {
    max-width: 1250px;
    background: #eee;
    margin: 0 auto;
    padding: 1em;
}
section h1 {
    text-align: center;
}
section nav {
    display: inline;
    margin-bottom: 1em;
    float: left;
}
section div.filtrar {
    float: right;
}
/*
    Botones
*/
a.button, button, .input-file-btn {
    border-radius: 0.2em;
    display: inline-block;
    padding: 0.5em 1.3em;
    background: #6764dc;
    color: #fff;
    width: max-content;
    border: 0;
    cursor: pointer;
}
a.button:hover {
    text-decoration: none;
    background: #3c3a9a;
}
a.button.verde, button.verde {
    background: #10ab3a;
}
a.button.verde:hover, button.verde:hover  {
    background: #0e9332;
}
a.button.rojo, button.rojo {
    background: #f35959;
}
a.button.rojo:hover, button.rojo:hover {
    background: #d13535;
}
input, select {
    display: inline-block;
    padding: 0.5em 1.3em;
    width: max-content;
    border: 0;
    height: 2.5em;
}
input[type=file] {
    display:none;
}


/* 
    Div tabla
*/
#resp-table {
    width: 100%;
    display: table;
}
.table-header-cell{
    display: table-cell;
    padding: 0.8em;
    text-align: justify;
    border-bottom: 1px solid black;
    font-weight: bold;
}
.resp-table-row{
    display: table-row;
}
.table-body-cell{
    display: table-cell;
    padding: 0.5em 0.2em;
    border-bottom: 1px dotted black;
}
.alt{
    background-color: rgba(255, 255, 255, 0.45);
}
form {
    margin: 0.5em 0;
}
<<<<<<< HEAD
=======
.info {
    border-radius: 0.3em;
    color: #fff;
    padding: 0.5em 1.3em;
}
.sql {
    background: #9f9cdf;
}
.error {
    background: #f78080;
}
>>>>>>> master
