tpdf/style.css

56 lines
891 B
CSS

@charset "utf-8";
/******* Main elements *******/
body {
margin: 0 auto;
font-family: sans-serif;
color: black;
background-color: white;
background-image: url(frontend/background.png);
}
/******* Search form *******/
#tpdfSearchDiv {
background-color: black;
color: white;
padding: 10px;
border-bottom: 4px solid green;
}
/******* Results output table *******/
#tpdfOutput section {
margin: 3px;
}
/* table {
margin: 0 auto;
border: 1px solid black;
border-collapse: collapse;
}
thead {
background-color: #CECECE;
position: sticky;
top: 0px;
}
td, th {
padding: 2px;
border: 1px solid black;
} */
#tpdfOutput img {
margin: 2px;
display: inline-block;
max-width: 200px;
max-height: 200px;
}
#tpdfOutput dl {
margin: 2px;
display: inline-block;
}
#tpdfOutput dt {
font-weight: bold;
}