122 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			122 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
@media print {
 | 
						|
    #header,
 | 
						|
    #footer,
 | 
						|
    #nav {
 | 
						|
        display: none !important;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
.doc-container {
 | 
						|
    padding: 10px 15px;
 | 
						|
    font-size: 13px;
 | 
						|
    font-family: sans-serif;
 | 
						|
}
 | 
						|
 | 
						|
.info-line {
 | 
						|
    padding-bottom: 6px;
 | 
						|
}
 | 
						|
 | 
						|
.title {
 | 
						|
    font-size: 16px;
 | 
						|
    margin-top: 20px;
 | 
						|
    margin-bottom: 2px;
 | 
						|
}
 | 
						|
 | 
						|
.footer {
 | 
						|
    margin-top: 8px;
 | 
						|
    display: flex;
 | 
						|
    justify-content: space-between;
 | 
						|
}
 | 
						|
 | 
						|
.footer-block {
 | 
						|
    justify-content: space-between;
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
.footer-line {
 | 
						|
    font-size: medium;
 | 
						|
    font-weight: bolder;
 | 
						|
    margin: 2px 0;
 | 
						|
}
 | 
						|
 | 
						|
table {
 | 
						|
    width: 100%;
 | 
						|
    border-collapse: separate;
 | 
						|
    border-spacing: 0;
 | 
						|
    border: solid black 2px;
 | 
						|
    border-radius: 15px;
 | 
						|
}
 | 
						|
 | 
						|
thead {
 | 
						|
    display: table-header-group;
 | 
						|
}
 | 
						|
 | 
						|
tfoot {
 | 
						|
    display: table-footer-group;
 | 
						|
}
 | 
						|
 | 
						|
td:nth-child(5) {
 | 
						|
    border-right: 1px solid white;
 | 
						|
}
 | 
						|
 | 
						|
table tbody tr:nth-child(odd) {
 | 
						|
    background-color: #dbdbdb;
 | 
						|
}
 | 
						|
 | 
						|
tr {
 | 
						|
    page-break-inside: avoid;
 | 
						|
}
 | 
						|
 | 
						|
td, th {
 | 
						|
    padding: 16px 13px;
 | 
						|
}
 | 
						|
 | 
						|
td:first-child, th:first-child {
 | 
						|
    padding-left: 50px;
 | 
						|
}
 | 
						|
 | 
						|
td:last-child, th:last-child {
 | 
						|
    padding-right: 50px;
 | 
						|
}
 | 
						|
 | 
						|
td:first-child, th:first-child {
 | 
						|
    text-align: left;
 | 
						|
}
 | 
						|
 | 
						|
td:first-child {
 | 
						|
    white-space: normal;
 | 
						|
    word-wrap: break-word;
 | 
						|
}
 | 
						|
 | 
						|
td:not(:first-child), th:not(:first-child) {
 | 
						|
    text-align: right;
 | 
						|
}
 | 
						|
 | 
						|
td:not(:first-child) {
 | 
						|
    white-space: nowrap;
 | 
						|
    overflow: hidden;
 | 
						|
    text-overflow: ellipsis;
 | 
						|
}
 | 
						|
 | 
						|
img {
 | 
						|
    width: 170px;
 | 
						|
    margin-bottom: 15px;
 | 
						|
}
 | 
						|
 | 
						|
table tfoot {
 | 
						|
    border-top: 2px solid black;
 | 
						|
}
 | 
						|
 | 
						|
.footer-line-right {
 | 
						|
    font-size: medium;
 | 
						|
    font-weight: bolder;
 | 
						|
    margin: 2px 0;
 | 
						|
    width: 100%;
 | 
						|
    text-align: right;
 | 
						|
}
 | 
						|
 | 
						|
.footer-words {
 | 
						|
    width: 100%;
 | 
						|
    flex-direction: column-reverse;
 | 
						|
    justify-content: flex-end;
 | 
						|
} |