-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
51 lines (44 loc) · 809 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.hocr-container {
position: absolute;
/* border: none;*/
}
#hocrImageContainer {
margin-top: 1em;
}
#hocrContainer div {
position: absolute;
border: 1px solid gray;
}
#hocrContainer .ocrx_word {
position: absolute;
border: 1px solid red;
background-color: rgba(255, 0, 0, 0.3);
color: transparent;
}
#hocrContainer .ocr_line {
position: absolute;
border: 1px solid green;
background-color: rgba(0, 255, 0, 0.3);
}
#hocrContainer .ocr_par {
position: absolute;
border: 1px solid blue;
background-color: rgba(0, 0, 255, 0.3);
}
#image {
position: absolute;
z-index: -1;
}
#coordinates {
display: none;
position: absolute;
top: 0;
left: 0;
background-color: rgba(255, 255, 255, 0.99);
padding: 5px;
border: 1px solid #000;
}