-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (81 loc) · 1.59 KB
/
index.html
File metadata and controls
81 lines (81 loc) · 1.59 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>OCR4All</title>
<style>
* {
box-sizing:border-box;
font-family: Georgia, serif;
}
body {
margin: 0px;
padding: 0px;
}
h1 {
background-color:#283593;
color: white;
padding: 20px 40px;
margin-top: 0;
font-size: 60px;
font-weight:normal;
}
article {
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
border-top: 1px solid #ddd;
border-right: 1px solid #ddd;
border-left: 1px solid #ddd;
margin: .5rem 0 1rem 0;
width: 90%;
max-width: 1280px;
padding: 10px 30px;
margin: 0px auto;
}
ul {
list-style:none;
padding: 0;
}
li {
border-top: 1px solid #ddd;
border-right: 1px solid #ddd;
border-left: 1px solid #ddd;
margin: 0;
}
a {
width:100%;
padding: 5px 20px;
display: block;
text-decoration: none;
color: #5c6bc0;
}
a:hover{
background-color: #5c6bc0;
color: white;
}
li:last-child {
border-bottom: 1px solid #ddd;
}
@media only screen and (min-width: 601px){
article {
width: 85%;
max-width: none;
}
}
@media only screen and (min-width: 601px){
article {
width: 85%;
}
}
</style>
</head>
<body>
<h1>OCR4all - Tools</h1>
<article>
<p>Web tools:</p>
<ul>
<li><a href="/ocr4all">OCR4all - Main web interface</a></li>
<li><a href="/Larex">Larex - Segmentation and Ground Truth production tool</a></li>
</ul>
</article>
</body>
</html>