/*
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 : 05-jun-2017, 10:11:43
    Author     : Ignacio
*/

.propertiesTable{
    width: 100%;
    border-collapse:collapse;
}

.propertiesTable th{
    background-color: #F20079;
    color: white;
    font-size: 10pt;
    text-align: center;
    
    display: flex;
    flex-flow: column;
    align-items: middle;
}

.tableHeader{
    
    display: flex;
    flex-flow: row;
    
    background-color: #F20079;
    color: white;
    font-size: 10pt;
    text-align: center;
    line-height: 20pt;
    
}

.tableRow{
    display: flex;
    flex-flow: row;
    
    background-color: white;
    color: #616161;
    
    font-size: 10pt;
    text-align: left;
    
}

.tableCell{
    border: solid 1px #ededed;
    padding: 5pt;
    overflow: hidden;
}

.colName{
    width: 140pt;
}

.colType{
    width: 80pt;
}

.colConstraint{
    width: 90pt;
}

.colDescription{
    width: 150pt;
    flex-grow: 1;
}

