/**
*
* StyleSheets
*
* Copyright (c) 2024 Oliver Billmann
*
* Autor: Oliver Billmann (oliver@billmann-edv.de)
*
* $Id: orbill.css,v 1.3 2024/07/11 09:50:29 oliver Exp $
*
*/

/*
  generelle Sachen für die Entwicklung
*/

pre.stack-trace {
    text-align: left;
    color:      #000000;
}

pre.dumper {
    text-align: left
}

/*
  Tabellen mit DIVs darstellen
*/

div.divTable {
    display:       table;
    width:         100%;
    margin-bottom: 20px;
}

div.divThead {
    display:     table-header-group;
    font-weight: bold
}

div.divTbody {
    display: table-row-group;
}

div.divTfoot {
    display:     table-footer-group;
    font-weight: bold
}

div.divTr {
    display: table-row;
}

div.divTd {
    display:    table-cell;
    padding:    3px;
    text-align: justify;
}

div.divTh {
    display:    table-cell;
    padding:    3px;
    text-align: center;
}

/*
  Tabellen mit Custom Tags darstellen
*/

div-table {
    display:       table;
    width:         100%;
    margin-bottom: 20px;
}

div-thead {
    display:     table-header-group;
    font-weight: bold
}

div-tbody {
    display: table-row-group;
}

div-tfoot {
    display:     table-footer-group;
    font-weight: bold
}

div-tr {
    display: table-row;
}

div-td {
    display:    table-cell;
    padding:    3px;
    text-align: justify;
}

div-th {
    display:    table-cell;
    padding:    3px;
    text-align: center;
}
