72 lines
1.5 KiB
CSS
72 lines
1.5 KiB
CSS
td { color: black; font-size: 8pt; font-family: courier, monospace; }
|
|
th { color: black; font-weight: bold; font-size: 12pt; font-family: courier, monospace; }
|
|
a:link {font-family:courier; color: black ; text-decoration:none; font-weight:bold; }
|
|
a:visited {font-family:courier; color: black ; text-decoration:none; font-weight:bold; }
|
|
|
|
#listprint {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
#listprint td, #listprint th {
|
|
border: 1px solid #ddd;
|
|
padding: 4px;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
#listprint tr:nth-child(even){background-color: #f2f2f2;}
|
|
|
|
#listprint tr:hover {background-color: #ddd;}
|
|
|
|
@media print{
|
|
table { page-break-inside:auto }
|
|
tr { page-break-inside:avoid; page-break-after:auto }
|
|
thead { display:table-header-group }
|
|
tfoot { display:table-footer-group }
|
|
|
|
.no-print {visibility: hidden; display: none !important;}
|
|
|
|
@page {
|
|
size: A4;
|
|
}
|
|
}
|
|
|
|
|
|
.tooltip {
|
|
position: relative;
|
|
display: inline-block;
|
|
/* border-bottom: 1px dotted black; */
|
|
}
|
|
|
|
.tooltip .tooltiptext {
|
|
visibility: hidden;
|
|
max-width: 250px;
|
|
background-color: #444;
|
|
color: #fff;
|
|
font-family: sans-serif;
|
|
font-size: 12pt;
|
|
word-break: break-word;
|
|
text-align: center;
|
|
border-radius: 6px;
|
|
padding: 5px 5px;
|
|
position: absolute;
|
|
z-index: 1;
|
|
bottom: 120%;
|
|
left: 50%;
|
|
margin-left: -100px;
|
|
}
|
|
|
|
.tooltip .tooltiptext::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 50%;
|
|
margin-left: -5px;
|
|
border-width: 5px;
|
|
border-style: solid;
|
|
border-color: #444 transparent transparent transparent;
|
|
}
|
|
|
|
.tooltip:hover .tooltiptext {
|
|
visibility: visible;
|
|
}
|