tpdf/style.css

60 lines
984 B
CSS
Raw Normal View History

2018-10-20 16:46:05 +00:00
@charset "utf-8";
/******* Main elements *******/
2018-10-20 16:46:05 +00:00
body {
2018-12-22 15:23:27 +00:00
margin: 0 auto;
2018-12-22 17:38:12 +00:00
padding: 0px;
font-family: sans-serif;
color: black;
2018-12-22 15:23:27 +00:00
background-color: white;
background-image: url(frontend/background.png);
2018-10-20 16:46:05 +00:00
}
2018-12-22 17:38:12 +00:00
header {
margin: 0 auto;
padding: 10px;
2018-12-22 15:23:27 +00:00
background-color: black;
color: white;
2018-12-22 17:38:12 +00:00
line-height: 1.5em;
height: 21px;
border-bottom: 5px solid green;
font-family: sans-serif;
box-sizing: content-box !important;
}
2018-12-22 17:49:27 +00:00
header img {
max-width: 1.2em;
max-height: 1.2em;
vertical-align: middle;
}
2018-12-22 17:38:12 +00:00
a, a:visited {
text-decoration: none;
color: green;
}
/******* Search form *******/
#tpdfForm {
padding: 10px;
}
2018-12-22 15:23:27 +00:00
/******* Results output table *******/
#tpdfOutput section {
margin: 3px;
}
2018-12-22 15:23:27 +00:00
#tpdfOutput img {
margin: 2px;
display: inline-block;
2018-10-21 13:00:19 +00:00
max-width: 200px;
max-height: 200px;
}
2018-12-22 15:23:27 +00:00
#tpdfOutput dl {
margin: 2px;
display: inline-block;
}
#tpdfOutput dt {
font-weight: bold;
}