58 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
body {
 | 
						|
    font-family: arial, verdana, sans-serif;
 | 
						|
}
 | 
						|
 | 
						|
.pdf-content {
 | 
						|
    border: 1px solid #000000;
 | 
						|
}
 | 
						|
 | 
						|
/* CSS classes used by TextLayerBuilder to style the text layer divs */
 | 
						|
 | 
						|
/* This stuff is important! Otherwise when you select the text, the text in the divs will show up! */
 | 
						|
::selection { background:rgba(0,0,255,0.3); }
 | 
						|
::-moz-selection { background:rgba(0,0,255,0.3); }
 | 
						|
 | 
						|
.textLayer {
 | 
						|
    position: absolute;
 | 
						|
    left: 0;
 | 
						|
    top: 0;
 | 
						|
    right: 0;
 | 
						|
    bottom: 0;
 | 
						|
    color: #000;
 | 
						|
    font-family: sans-serif;
 | 
						|
    overflow: hidden;
 | 
						|
}
 | 
						|
 | 
						|
.textLayer > div {
 | 
						|
    color: transparent;
 | 
						|
    position: absolute;
 | 
						|
    line-height: 1;
 | 
						|
    white-space: pre;
 | 
						|
    cursor: text;
 | 
						|
}
 | 
						|
 | 
						|
.textLayer .highlight {
 | 
						|
    margin: -1px;
 | 
						|
    padding: 1px;
 | 
						|
 | 
						|
    background-color: rgba(180, 0, 170, 0.2);
 | 
						|
    border-radius: 4px;
 | 
						|
}
 | 
						|
 | 
						|
.textLayer .highlight.begin {
 | 
						|
    border-radius: 4px 0px 0px 4px;
 | 
						|
}
 | 
						|
 | 
						|
.textLayer .highlight.end {
 | 
						|
    border-radius: 0px 4px 4px 0px;
 | 
						|
}
 | 
						|
 | 
						|
.textLayer .highlight.middle {
 | 
						|
    border-radius: 0px;
 | 
						|
}
 | 
						|
 | 
						|
.textLayer .highlight.selected {
 | 
						|
    background-color: rgba(0, 100, 0, 0.2);
 | 
						|
}
 | 
						|
 |