tpdf/style.css

42 lines
583 B
CSS

@charset "utf-8";
/******* Main elements *******/
body {
font-family: sans-serif;
color: black;
background-color: #DEDEDE;
}
main {
text-align: center;
}
/******* Search form *******/
form label {
display: inline-block;
width: 10em;
}
/******* Results output table *******/
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;
}
img {
max-width: 200px;
max-height: 200px;
}