Spaces:
Running
on
L4
Running
on
L4
Update header.html
Browse files- header.html +67 -36
header.html
CHANGED
@@ -1,34 +1,65 @@
|
|
1 |
<html><head>
|
2 |
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css"> -->
|
3 |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
display: flex;
|
7 |
flex-direction: column;
|
8 |
-
justify-content: center;
|
9 |
align-items: center;
|
10 |
-
|
11 |
-
background: linear-gradient(45deg, #007BFF 0%, #0056b3 100%);
|
12 |
-
padding: 24px;
|
13 |
-
gap: 24px;
|
14 |
-
border-radius: 8px;
|
15 |
">
|
16 |
-
|
17 |
-
<div style="display: flex; flex-direction: column; gap: 8px;">
|
18 |
<h1 style="
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
MinerU: PDF Extraction Demo
|
26 |
</h1>
|
27 |
-
|
28 |
-
|
29 |
</div>
|
30 |
</div>
|
31 |
-
|
32 |
<p style="
|
33 |
margin: 0;
|
34 |
line-height: 1.6rem;
|
@@ -36,36 +67,34 @@
|
|
36 |
color: #fafafa;
|
37 |
opacity: 0.8;
|
38 |
">
|
39 |
-
A one-stop, open-source, high-quality data extraction tool, supports
|
|
|
40 |
</p>
|
41 |
-
<style>
|
|
|
42 |
display: inline-block;
|
43 |
}
|
44 |
-
|
45 |
.link-block + .link-block {
|
46 |
margin-left: 20px;
|
47 |
}
|
48 |
</style>
|
49 |
-
|
50 |
<div class="column has-text-centered">
|
51 |
<div class="publication-links">
|
52 |
-
|
53 |
-
|
54 |
<!-- Code Link. -->
|
55 |
-
<span class="link-block"
|
56 |
-
<a href="https://github.com/opendatalab/MinerU" class="external-link button is-normal is-rounded is-dark ">
|
57 |
-
<span class="icon">
|
58 |
-
<i class="fab fa-github" style="color: white"></i>
|
59 |
</span>
|
60 |
<span style="color: white">Code</span>
|
61 |
</a>
|
62 |
</span>
|
63 |
-
|
64 |
-
|
65 |
<!-- Homepage Link. -->
|
66 |
<span class="link-block">
|
67 |
-
<a href="https://opendatalab.com/" class="external-link button is-normal is-rounded is-dark">
|
68 |
-
<span class="icon">
|
69 |
<i class="fas fa-globe" style="color: white"></i>
|
70 |
</span>
|
71 |
<span style="color: white">Homepage</span>
|
@@ -73,7 +102,9 @@
|
|
73 |
</span>
|
74 |
</div>
|
75 |
</div>
|
76 |
-
|
77 |
<!-- New Demo Links -->
|
78 |
-
|
79 |
-
|
|
|
|
|
|
1 |
<html><head>
|
2 |
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css"> -->
|
3 |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
|
4 |
+
<style>
|
5 |
+
.link-block {
|
6 |
+
border: 1px solid transparent;
|
7 |
+
border-radius: 24px;
|
8 |
+
background-color: rgba(54, 54, 54, 1);
|
9 |
+
cursor: pointer !important;
|
10 |
+
}
|
11 |
+
.link-block:hover {
|
12 |
+
background-color: rgba(54, 54, 54, 0.75) !important;
|
13 |
+
cursor: pointer !important;
|
14 |
+
}
|
15 |
+
.external-link {
|
16 |
+
display: inline-flex;
|
17 |
+
align-items: center;
|
18 |
+
height: 36px;
|
19 |
+
line-height: 36px;
|
20 |
+
padding: 0 16px;
|
21 |
+
cursor: pointer !important;
|
22 |
+
}
|
23 |
+
.external-link,
|
24 |
+
.external-link:hover {
|
25 |
+
cursor: pointer !important;
|
26 |
+
}
|
27 |
+
a {
|
28 |
+
text-decoration: none;
|
29 |
+
}
|
30 |
+
</style></head>
|
31 |
+
|
32 |
+
<body>
|
33 |
+
<div style="
|
34 |
+
display: flex;
|
35 |
+
flex-direction: column;
|
36 |
+
justify-content: center;
|
37 |
+
align-items: center;
|
38 |
+
text-align: center;
|
39 |
+
background: linear-gradient(45deg, #007bff 0%, #0056b3 100%);
|
40 |
+
padding: 24px;
|
41 |
+
gap: 24px;
|
42 |
+
border-radius: 8px;
|
43 |
+
">
|
44 |
+
<div style="
|
45 |
display: flex;
|
46 |
flex-direction: column;
|
|
|
47 |
align-items: center;
|
48 |
+
gap: 16px;
|
|
|
|
|
|
|
|
|
49 |
">
|
50 |
+
<div style="display: flex; flex-direction: column; gap: 8px">
|
|
|
51 |
<h1 style="
|
52 |
+
font-size: 48px;
|
53 |
+
color: #fafafa;
|
54 |
+
margin: 0;
|
55 |
+
font-family: 'Trebuchet MS', 'Lucida Sans Unicode',
|
56 |
+
'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
|
57 |
+
">
|
58 |
MinerU: PDF Extraction Demo
|
59 |
</h1>
|
|
|
|
|
60 |
</div>
|
61 |
</div>
|
62 |
+
|
63 |
<p style="
|
64 |
margin: 0;
|
65 |
line-height: 1.6rem;
|
|
|
67 |
color: #fafafa;
|
68 |
opacity: 0.8;
|
69 |
">
|
70 |
+
A one-stop, open-source, high-quality data extraction tool, supports
|
71 |
+
PDF/webpage/e-book extraction.<br>
|
72 |
</p>
|
73 |
+
<style>
|
74 |
+
.link-block {
|
75 |
display: inline-block;
|
76 |
}
|
|
|
77 |
.link-block + .link-block {
|
78 |
margin-left: 20px;
|
79 |
}
|
80 |
</style>
|
81 |
+
|
82 |
<div class="column has-text-centered">
|
83 |
<div class="publication-links">
|
|
|
|
|
84 |
<!-- Code Link. -->
|
85 |
+
<span class="link-block">
|
86 |
+
<a href="https://github.com/opendatalab/MinerU" class="external-link button is-normal is-rounded is-dark" style="text-decoration: none; cursor: pointer">
|
87 |
+
<span class="icon" style="margin-right: 4px">
|
88 |
+
<i class="fab fa-github" style="color: white; margin-right: 4px"></i>
|
89 |
</span>
|
90 |
<span style="color: white">Code</span>
|
91 |
</a>
|
92 |
</span>
|
93 |
+
|
|
|
94 |
<!-- Homepage Link. -->
|
95 |
<span class="link-block">
|
96 |
+
<a href="https://opendatalab.com/" class="external-link button is-normal is-rounded is-dark" style="text-decoration: none; cursor: pointer">
|
97 |
+
<span class="icon" style="margin-right: 8px">
|
98 |
<i class="fas fa-globe" style="color: white"></i>
|
99 |
</span>
|
100 |
<span style="color: white">Homepage</span>
|
|
|
102 |
</span>
|
103 |
</div>
|
104 |
</div>
|
105 |
+
|
106 |
<!-- New Demo Links -->
|
107 |
+
</div>
|
108 |
+
|
109 |
+
|
110 |
+
</body></html>
|